Reality123b commited on
Commit
edb1f90
·
verified ·
1 Parent(s): 6419ef5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -24,9 +24,9 @@ if not HF_API_KEY:
24
  raise ValueError("Please set the HF_API_KEY environment variable.")
25
 
26
  # You can use different models for different tasks
27
- MAIN_LLM_ENDPOINT = "your-main-llm-endpoint" # Replace with your actual endpoint
28
- REASONING_LLM_ENDPOINT = "your-reasoning-llm-endpoint" # Can be the same as main if needed
29
- CRITIC_LLM_ENDPOINT = "your-critic-llm-endpoint" # Can be the same as main if needed
30
 
31
  MAX_ITERATIONS = 12 # Increased from 7
32
  TIMEOUT = 60
 
24
  raise ValueError("Please set the HF_API_KEY environment variable.")
25
 
26
  # You can use different models for different tasks
27
+ MAIN_LLM_ENDPOINT = "https://router.huggingface.co/hf-inference/models/Qwen/Qwen2.5-Coder-32B-Instruct/v1/chat/completions" # Replace with your actual endpoint
28
+ REASONING_LLM_ENDPOINT = "https://router.huggingface.co/hf-inference/models/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B/v1/chat/completions" # Can be the same as main if needed
29
+ CRITIC_LLM_ENDPOINT = "https://router.huggingface.co/hf-inference/models/Qwen/QwQ-32B-Preview/v1/chat/completions" # Can be the same as main if needed
30
 
31
  MAX_ITERATIONS = 12 # Increased from 7
32
  TIMEOUT = 60