ai with hyper machine fixing the url
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-06-26 15:31:16 +01:00
parent 7251bf305a
commit e58b0e152b
2 changed files with 2 additions and 2 deletions

View File

@@ -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,

View File

@@ -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 {