Skip to content

Commit

Permalink
remove groq_api_key from env_var
Browse files Browse the repository at this point in the history
  • Loading branch information
nwaughachukwuma committed Oct 30, 2024
1 parent f900a6d commit 5684801
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/env_var.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,9 @@
else:
load_dotenv()

BACKEND_URL = environ.get("BACKEND_URL", "http://localhost:8000")
APP_URL = environ.get("APP_URL", "http://localhost:8501")

OPENAI_API_KEY = environ["OPENAI_API_KEY"]
ANTHROPIC_API_KEY = environ["ANTHROPIC_API_KEY"]
GEMINI_API_KEY = environ["GEMINI_API_KEY"]
GROQ_API_KEY = environ["GROQ_API_KEY"]

ELEVENLABS_API_KEY = environ["ELEVENLABS_API_KEY"]

APP_URL = environ.get("APP_URL", "http://localhost:8501")

0 comments on commit 5684801

Please sign in to comment.