自2022年以來幻覺潛在網絡
請參閱此處最早的演示之一:https://twitter.com/flngr/status/1609616068057698304
一年中斷後,潛在的瀏覽器回來了!
根據大眾需求(請參閱此線程),已經努力將其升級到依賴項的最新版本(嗯,大多數),並修復代碼以使其再次運行!
注意:自從我從事這個項目以來已經很長時間了,因此從那以後發生了很多事情。我不得不從接下來的12到下一個14遷移,webpack到bun,davinci到gpt-4等。
嘗試時,某些事情仍然有可能破裂。
潛在瀏覽器是一個像Web瀏覽器設計的桌面應用程序,它幻覺了Web搜索結果(結果是虛構的,並且由LLM生成)和網頁。
潛在瀏覽器是一個旨在在計算機上本地運行的Web應用程序。
該應用程序為99%的反應,尾風,打字稿和NextJ。運行時間是陶裡(Tauri),它是用鏽蝕寫的(但潛在瀏覽器本身並沒有真正使用Rust)。
2024年3月的更新:我從來沒有真正有時間將其作為獨立的“ Drag&Drop install”應用程序打包(實際上我確實嘗試過,但是有一些錯誤,然後我開始從事其他項目)。
我一直在從事各種AI項目,所以我設置和不和諧等等。
您可以通過在此處關注我的鏈接:https://linktr.ee/flngr找到更多信息。
目前,您需要獲取代碼並在計算機上運行它。
確保您已經為操作系統安裝了先決條件:
curl -fsSL https://bun.sh/install | bash
curl https://sh.rustup.rs -sSf | sh
bun i
bun tauri devbun i
bun next dev
open http://localhost:3000要繼續(該應用程序已於2024年3月重新啟動,大多數說明被貶低了)。
注意:潛在瀏覽器正在使用Tauri V2,但DOC尚未完成:https://beta.tauri.app/guides/guides/build
以下是一些可以讓您入門的示例:
a back-office application to manage users. There is a table with editable cells, a button to add a new user, and a counter of users.a simulation of calculating PI by generating random dots inside a circle. The simulator should include a slider to adjust the speed, a reset button, and the current estimate of PI.a simple app to compute your BMI, using form inputs for age, height and weight (in kilos)a whack-a-mole game but with spiders, a css 3-per-3 grid, emojis, and JS codea clone of asteroid using <canvas>, the mouse should orient the spaceship, it should fire bullets when clicking, and bullets can destroy asteroids.website for a company selling time travel visit packages (great pyramids, Trojan wars..). The website features 3 polaroid pictures taken by tourists of those eras這些示例還不能。
a 120 BPM drum machine made using tone.js, with a step sequencer made using html checkboxes, to indicate when to play. Each row should be a different instrument (kick, snare, hihat), 8 buttons per row. There is a button to start/stop.我同意!
嘗試再次單擊生成?
也許您對Openai的要求太多了?
等待一點,然後重新啟動應用程序,例如。從終端殺死它。
在2024年3月再次重新加工該應用程序後,我注意到Tauri:Android和iOS現在有兩個新的構建選項。
但是ATM我還沒有真正研究過。
如果您有興趣探索這一點,以下是命令:
# init
bun run tauri android init
bun run tauri ios init
# run
bun run tauri android dev
bun run tauri ios dev