You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
services:
tabby:
restart: alwaysimage: registry.tabbyml.com/tabbyml/tabbyenvironment:
- ENDPOINT=https://my-endpoint.com
- TABBY_WEBSERVER_JWT_TOKEN_SECRET=mysecret
- LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/cuda/compat:$ #workaround cuda errors, see https://github.com/TabbyML/tabby/issues/2634#issuecomment-2244530283entrypoint: /opt/tabby/bin/tabby-cpucommand: serve --device cpu --model StarCoder-1B --chat-model Qwen2-1.5B-Instructvolumes:
- "./data:/data"ports:
- 127.0.0.1:8090:8080
The only configuration I made was to create a first admin and configure the endpoint URL of my server. I am running zabby behind a nginx reverse proxy with SSL configuration. Both setups natively or in docker result in the same error.
While writing this bug report I found the resolution as well. I tried to run tabby without reverse proxy and it worked. It seemed to be related to my nginx reverse proxy configuration. Initially it was:
Describe the bug
Running any prompts in the chatbox on the web page of Tabby or in the VSCode plugin result in the following error message:
Information about your version
Please provide output of
tabby --version
Information about your GPU
Please provide output of
nvidia-smi
Only CPU mode (linux virtual server)
Additional context
Add any other context about the problem here.
Running tabby natively or in Docker on Debian GNU/Linux 11 (bullseye). No GPU available on the system.
Installation steps native:
Installation steps docker:
The only configuration I made was to create a first admin and configure the endpoint URL of my server. I am running zabby behind a nginx reverse proxy with SSL configuration. Both setups natively or in docker result in the same error.
While writing this bug report I found the resolution as well. I tried to run tabby without reverse proxy and it worked. It seemed to be related to my nginx reverse proxy configuration. Initially it was:
Following the instructions found here I changed it to:
With this configuration it works.
Sharing this experience now more for other users experiencing the same problem.
I will create a pull request for an documentation update both for running behind reverse proxy and how to run in docker without GPU.
The text was updated successfully, but these errors were encountered: