summaryrefslogtreecommitdiff
path: root/internal/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/config.go')
-rw-r--r--internal/config/config.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 4a86b06..dc7d1c3 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -22,9 +22,6 @@ type Config struct {
Port string
CacheTTLMinutes int
Debug bool
-
- // AI Agent Access
- AIAgentAPIKey string
}
// Load reads configuration from environment variables
@@ -44,9 +41,6 @@ func Load() (*Config, error) {
Port: getEnvWithDefault("PORT", "8080"),
CacheTTLMinutes: getEnvAsInt("CACHE_TTL_MINUTES", 5),
Debug: getEnvAsBool("DEBUG", false),
-
- // AI Agent Access
- AIAgentAPIKey: os.Getenv("AI_AGENT_API_KEY"),
}
// Validate required fields