-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Allow models to not have a tag, don't add :latest automatically #4386
Comments
@rustyrazorblade is there an example you could share of a model that isn't working? The code linked here is used for "blocks", which are a distinct concept in Continue, described a bit more here: https://docs.continue.dev/hub/blocks/intro You should be able to use any model you'd like by hooking it up with the OpenAI-compatible config: https://docs.continue.dev/customize/model-providers/openai#openai-compatible-servers--apis |
Ah, ok. I don't really know the codebase, or typescript :) Open WebUI also has open api compatible endpoints, they have a little tutorial here how to set it up with continue: https://docs.openwebui.com/tutorials/integrations/continue-dev I created a model in Open Web UI called "Tech Writer". It automatically got assigned the id "tech-writer", I don't see a way this can be set manually. Hitting the
In my continue config.yaml, this is my setting:
When I try to use the chat, I get a 400 error. Note: Before I updated to the latest continue, I saw it mentioned that it couldn't find I ran another test, this time using the name of one of the ollama models, still going through Open WebUI. Using I can use the model if I hit the
So the model can be hit via the API (and works within their UI). I believe the error is most likely due to what I saw a few days ago, where ":latest" is being appended to the model's name. |
Ah, I found core.log, and it confirms that
|
Validations
Problem
OpenWebUI allows you to create custom models, but they don't have a
:tag
at the end, they just have an ID. If you don't put a tag, I believe continue will automatically add:latest
to the end. I think that's here, but I'm not 100% sure.Solution
It would be great if continue could support custom models created in OpenWebUI by letting the user specify models without a tag, and it wouldn't auto add
:latest
when sending requests to the api.The text was updated successfully, but these errors were encountered: