general

How can I fix the 'Tabby server requires authentication' issue?

I'm trying to run Tabby server on Windows using VS Code, but I'm getting an 'Unauthorized' and 403 error when trying to execute. I can access the Swagger UI at http://localhost:8080/swagger-ui/. I tried starting Tabby with the --webserver flag, but it gives me an error message. What can I do to fix this issue?

An

Anton H

Asked on Jan 24, 2024

It seems like you're running an older version of Tabby. You can check the version by running docker run -it -p 8080:8080 -v $HOME/.tabby:/data tabbyml/tabby -V. The current version is 0.7.0. You might consider using a newer image by specifying the image tag in the docker run command, e.g. docker run -it -p 8080:8080 -v $HOME/.tabby:/data tabbyml/tabby:0.7.0 -V.

Jan 25, 2024Edited by