From 6e999927ec23df177decbcb7de971f5a16de0af5 Mon Sep 17 00:00:00 2001 From: Alixander <62478747+alixanderthegreat@users.noreply.github.com> Date: Mon, 23 Jun 2025 10:31:18 -0600 Subject: [PATCH] fix: use correct env key in panic (#215) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8965bc6..cc9992f 100644 --- a/main.go +++ b/main.go @@ -31,7 +31,7 @@ func init() { panic("LOCALAGI_MODEL not set") } if apiURL == "" { - panic("LOCALAGI_API_URL not set") + panic("LOCALAGI_LLM_API_URL not set") } if timeout == "" { timeout = "5m"