fix(providers): count apikey connections for ollama freeTier provider

ollama's registry entry lacked authModes, so dualAuthTypes on the providers page defaulted to oauth and its apikey connections showed as No connections on the freeTier card.
This commit is contained in:
Cokky Turnip
2026-08-05 10:34:17 +07:00
committed by decolua
parent 786b3013ba
commit d6df6576c5

View File

@@ -15,6 +15,8 @@ export default {
},
},
category: "freeTier",
authType: "apikey",
authModes: ["apikey"],
transport: {
baseUrl: "https://ollama.com/api/chat",
validateUrl: "https://ollama.com/api/tags",