自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