From e58b0e152b62c5ef15d809e6ab0a36b1fbe52ebd Mon Sep 17 00:00:00 2001 From: Zaine Date: Fri, 26 Jun 2026 15:31:16 +0100 Subject: [PATCH] ai with hyper machine fixing the url --- apps/web/src/components/settings/ai-config-panel.tsx | 2 +- apps/web/src/lib/config/env.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/settings/ai-config-panel.tsx b/apps/web/src/components/settings/ai-config-panel.tsx index 6821526..a348b9a 100755 --- a/apps/web/src/components/settings/ai-config-panel.tsx +++ b/apps/web/src/components/settings/ai-config-panel.tsx @@ -24,7 +24,7 @@ const DEFAULT_LOCAL_PROVIDER: AIProviderConfig = { const DEFAULT_HYPER_PROVIDER: AIProviderConfig = { type: "ollama", - baseUrl: "http://192.168.1.50:11434", + baseUrl: "http://192.168.0.98:11434", model: "llama3.1:8b", temperature: 0.7, maxTokens: 2048, diff --git a/apps/web/src/lib/config/env.ts b/apps/web/src/lib/config/env.ts index 6027431..fe42d4e 100755 --- a/apps/web/src/lib/config/env.ts +++ b/apps/web/src/lib/config/env.ts @@ -36,7 +36,7 @@ export const env = { }, get hyperOllamaUrl(): string { - return process.env.HYPER_OLLAMA_URL ?? "http://192.168.1.50:11434"; + return process.env.HYPER_OLLAMA_URL ?? "http://192.168.0.98:11434"; }, get hyperOllamaModelFast(): string {