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
I run into the following issue, which feels like a bug. When adding a custom provider/model, eg. ollama, the OpenAI API url MUST NOT end with a /. If the URL ends with a /, plandex-server will try to communicate wth a GET request, which will fail on OpenAPI-comptabile APIs.
I run into the following issue, which feels like a bug. When adding a custom provider/model, eg. ollama, the OpenAI API url MUST NOT end with a /. If the URL ends with a /, plandex-server will try to communicate wth a GET request, which will fail on OpenAPI-comptabile APIs.
Example:
API: http://localhost:11434/v1/
Results in GET http://localhost:11434/v1/v1/chat/completions and this gives a 404
API: http://localhost:11434/v1
Results in POST http://localhost:11434/v1/v1/chat/completions and this works as expected.
The text was updated successfully, but these errors were encountered: