Remove OpenClaw provider wiring
All checks were successful
CI / test (push) Successful in 12s
Build and Deploy / build-and-deploy (push) Successful in 22s

This commit is contained in:
Grendgi
2026-06-08 13:48:32 +03:00
parent 12db90dc3b
commit e0f74c62b0
4 changed files with 1 additions and 67 deletions

View File

@@ -17,7 +17,6 @@ type Config struct {
LLMModel string
LLMTimeout time.Duration
WhisperXURL string
OpenClawURL string
}
func Load() Config {
@@ -32,7 +31,6 @@ func Load() Config {
LLMModel: envString("LLM_MODEL", "qwen2.5-14b"),
LLMTimeout: envDuration("LLM_TIMEOUT", 5*time.Minute),
WhisperXURL: envString("WHISPERX_URL", ""),
OpenClawURL: envString("OPENCLAW_URL", ""),
}
}