Joel Wypior
Joel Wypior
Edit: left out some relevant parameters and had formatting errors. Corrected now.
Hi! Thanks for your detailed answer. 1. I need the SSL stuff for the main UI. Because of limited VRAM I'd rather not have more H2oGPT-instances than necessary... Is that...
I changed `uvicorn.run(app, host=host, port=port, ssl_certfile=ssl_certfile, ssl_keyfile=ssl_keyfile)` to ` uvicorn.run(app, host=host, port=port)` and the port from 1001 to 10001, but have the same error...
It's on Ubuntu 22.04, and there is no proxy explicitly set up, nor is the internet connection filtered. But there is a proxy server available which browsers get via the...
During extensive testing I found out that as the main model Guanaco 65B works best for german and https://huggingface.co/intfloat/multilingual-e5-large for the multilingual embeddings.
In the meantime I've implemented a worker_status endpoint in ui.py which is queried by a corresponding JavaScript function which checks every second and disables the text field as soon as...
In **ui.py** before `def ui` I added: ``` # A flag indicating whether the worker is busy. worker_busy = False ``` Then within def(worker(... at the beginning I added: ```...
> @wypiki would this also give you the ability to run multiple instances. Let's say I prompt in one webbrowser and run it on another webbrowser and try to prompt...
> I couldn't understand the instructions fully mind sharing the ui.py and index.html ? Sorry, I'm still on vacation. > I figured it out! It works great! > > I...
I spent a few hours now trying to get this to work: - added the FQDN to /etc/hosts - set GRADIO_SERVER_HOST=... - changed the parameters for uvicorn.run, changed host to...