From 2c604598511efd49954e5ff5ada0252aaa4f6e50 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Mar 2026 17:08:19 +0000 Subject: [PATCH] fix(agent): pass dummy apiKey for Ollama provider registration (#116) Co-authored-by: Jason Woltje Co-committed-by: Jason Woltje --- apps/gateway/src/agent/provider.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/gateway/src/agent/provider.service.ts b/apps/gateway/src/agent/provider.service.ts index 336f775..9b84df3 100644 --- a/apps/gateway/src/agent/provider.service.ts +++ b/apps/gateway/src/agent/provider.service.ts @@ -96,6 +96,7 @@ export class ProviderService implements OnModuleInit { id: 'ollama', name: 'Ollama', baseUrl: `${ollamaUrl}/v1`, + apiKey: 'ollama', models: modelIds.map((id) => ({ id, name: id,