Pacien B

Results 25 comments of Pacien B

@eliobricenov there you are. Only happens on Safari iOS, not firefox. https://user-images.githubusercontent.com/1371207/108166434-9dbf3700-710d-11eb-8f68-519642b8a31d.mp4 https://user-images.githubusercontent.com/1371207/108166455-a3b51800-710d-11eb-9eb5-231e6d4b94e7.mp4

This is the most important feature I've been looking for in any photo library/digital asset management software. I even started to build my own app just for this, but didn't...

Not meant to go in the guide, but some advices from the drawer PR: - Avoid repeating the same code at multiple places. Create components and customize with props. -...

Closing in favour of https://github.com/jacoblee93/fully-local-pdf-chatbot/pull/19

I've done a small experiment creating a chrome extension that hosts and run local models: https://github.com/pacoccino/ai-mask What issues did you face with web-llm ? I'll try forking your app and...

I've drafted a PR just to show it works: https://github.com/jacoblee93/fully-local-pdf-chatbot/pull/16 It works great through I got some technical issues with the web worker. Caching works and the extension store the...

I've open a new PR https://github.com/jacoblee93/fully-local-pdf-chatbot/pull/19 with better support for AI-Mask. @jacoblee93 About your thought exposing an equivalent of Langserve endpoint from a chrome extension, could you elaborate ? What...

Yes, it was pretty straightforward to integrate a web3wallet in the host, here my code: ```javascript private forwardWeb3Message(rawmessage: string, callback: any) { const message = JSON.parse(JSON.stringify(rawmessage)); this.web3Provider.sendAsync(message, callback); } private...