From 83e2180e8051fbdcbd977064d53c9b69d431c623 Mon Sep 17 00:00:00 2001 From: zaviermeekz-cpu Date: Sun, 14 Jun 2026 22:20:15 -0400 Subject: [PATCH] fix: use /api/tags endpoint for Ollama model listing (#16000) (#16003) After upgrading to v0.26.0, the Ollama provider returns an empty model list because the Go rewrite uses `/api/ps` (only running models) instead of `/api/tags` (all installed models). This PR changes the endpoint to `/api/tags`, restoring the ability to list and add Ollama models. Closes #16000 --- conf/models/ollama.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/models/ollama.json b/conf/models/ollama.json index 9c1e460a82..ea0757e189 100644 --- a/conf/models/ollama.json +++ b/conf/models/ollama.json @@ -2,7 +2,7 @@ "name": "ollama", "url_suffix": { "chat": "api/chat", - "models": "api/ps", + "models": "api/tags", "embedding": "api/embed" }, "class": "local"