Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade does not work #4102

Closed
zomkoehl opened this issue Apr 1, 2025 · 1 comment
Closed

upgrade does not work #4102

zomkoehl opened this issue Apr 1, 2025 · 1 comment

Comments

@zomkoehl
Copy link

zomkoehl commented Apr 1, 2025

In VSCode Tabby Chat does not work anymore and requires an update:
Tabby Chat requires Tabby server version 0.27.0 or later. Your server is running version 0.26.0

I tried to upgrade the version by calling:

sudo docker pull tabbyml/tabby

And restarted tabby with

sudo docker stop tabby
sudo docker rm tabby
sudo docker run -d \
	--name tabby \
	--gpus device=4 \
	-p 8080:8080 \
	-v $HOME/.tabby:/data \
	registry.tabbyml.com/tabbyml/tabby \
	  serve \
	  --model Qwen2.5-Coder-7B \
	  --chat-model Qwen2.5-Coder-7B-Instruct \
	--device cuda

However, the version is still 0.26.0. I even tried to delete .data, but the version still did not change.

What do I need to do to upgrade the version?

@zomkoehl
Copy link
Author

zomkoehl commented Apr 1, 2025

By manually specifying the version in both pulling and running it is now working.

sudo docker pull registry.tabbyml.com/tabbyml/tabby:0.27.0
sudo docker stop tabby
sudo docker rm tabby
sudo docker run -d \
	--name tabby \
	--gpus device=4 \
	-p 8080:8080 \
	-v $HOME/.tabby:/data \
	registry.tabbyml.com/tabbyml/tabby:0.27.0 \
	  serve \
	  --model Qwen2.5-Coder-7B \
	  --chat-model Qwen2.5-Coder-7B-Instruct \
	--device cuda

@zomkoehl zomkoehl closed this as completed Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant