fix: fix the name of the env variable

This commit is contained in:
David Soria Parra
2025-03-11 10:26:38 +00:00
parent 775f879813
commit 06e692ba5c

View File

@@ -23,7 +23,7 @@ class Configuration:
def __init__(self) -> None: def __init__(self) -> None:
"""Initialize configuration with environment variables.""" """Initialize configuration with environment variables."""
self.load_env() self.load_env()
self.api_key = os.getenv("GROQ_API_KEY") self.api_key = os.getenv("LLM_API_KEY")
@staticmethod @staticmethod
def load_env() -> None: def load_env() -> None: