Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
11–20 of 150 posts
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#12Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#13This has sparked a curiosity in me to play with more LLms locally, thank you!
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#14Do you think it would be feasible to extend it to support web browsing?
I'd like to help if you could give some pointers on how to extend it.
When asked about web browsing, the bot said it could fetch web pages but then obviously didn't work when asked to summarize a web page.
[EDIT] The Llama 3 model was able to summarize web pages!
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#15Amazing! It's surprisingly fast to load and run given the size of the downloaded models. Do you think it would be feasible to extend it to support web browsing? I'd like to help if you could give some pointers on how to extend it. When asked about web browsing, the bot said it could fetch web pages but then obviously didn't work when asked to summarize a web page. [EDIT] The Llama 3 model was able to summarize web pa…
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#16Earlier quoted context omitted.
Yes, it only starts the download after you send the first message so visiting the site won’t use up any space. Approx sizes are listed in the GitHub README. Models are stored in indexeddb and will be managed by the browser. Might get evicted.
I see you have Phi1.5-q4f16_1-1k - any chance you could add Phi-3?
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#17I'm just seeing ERR_SSL_VERSION_OR_CIPHER_MISMATCH at https://secretllama.com/ and at http://secretllama.com/ I see "secretllama.com has been registered at Porkbun but the owner has not put up a site yet. Visit again soon to see what amazing website they decide to build."
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#18Earlier quoted context omitted.
Yes, it only starts the download after you send the first message so visiting the site won’t use up any space. Approx sizes are listed in the GitHub README. Models are stored in indexeddb and will be managed by the browser. Might get evicted.
I thought browser tabs only had access to ~400mb How do you have access to 5gb?
Re: Show HN: I built a free in-browser Llama 3 chatbot powered by WebGPU
#19Earlier quoted context omitted.
I thought browser tabs only had access to ~400mb How do you have access to 5gb?
A lot of the more modern options allow for many gigabytes for typical user setups https://developer.mozilla.org/en-US/docs/Web/API/Storage_API... .
I was always under the impression that the max blob size was 400mb and so you couldn't store files any bigger than that. Google gives so many different answers to these questions.
Do you know any other resources I can go more in depth on browser storage limits?