sunbal7 commited on
Commit
f46f2b8
·
verified ·
1 Parent(s): deee25a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,10 +12,10 @@ from datetime import datetime
12
  import os
13
 
14
  # --- Config ---
15
- API_URL = "https://openrouter.ai/api/v1/chat/completions"
16
  # Retrieve API key from environment variable
17
  API_KEY = os.getenv("OPENROUTER_API_KEY")
18
- MODEL = "mistralai/mistral-7b-instruct"
19
 
20
  # Set Tesseract path for different environments
21
  try:
 
12
  import os
13
 
14
  # --- Config ---
15
+ API_URL = "https://api.groq.com/openai/v1/chat/completions"
16
  # Retrieve API key from environment variable
17
  API_KEY = os.getenv("OPENROUTER_API_KEY")
18
+ MODEL = "llama3-70b-8192" # Or "mixtral-8x7b-32768" or "gemma-7b-it"
19
 
20
  # Set Tesseract path for different environments
21
  try: