pvanand commited on
Commit
f3b81df
·
verified ·
1 Parent(s): 367cc0b

Update helpers/ai_client.py

Browse files
Files changed (1) hide show
  1. helpers/ai_client.py +2 -2
helpers/ai_client.py CHANGED
@@ -6,8 +6,8 @@ from typing import Optional, Dict, Any
6
  class AIClient:
7
  def __init__(self):
8
  # Load environment variables
9
- self.llm_api_url = os.getenv("LLM_API_URL", "https://pvanand-audio-chat.hf.space/llm-agent")
10
- self.api_key = os.getenv("API_KEY", "44d5c")
11
 
12
  def send_prompt(
13
  self,
 
6
  class AIClient:
7
  def __init__(self):
8
  # Load environment variables
9
+ self.llm_api_url = os.getenv("LLM_API_URL")
10
+ self.api_key = os.getenv("X_API_KEY")
11
 
12
  def send_prompt(
13
  self,