MrunmayD commited on
Commit
4270002
·
verified ·
1 Parent(s): 9003d07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -35,7 +35,10 @@ final_answer(
35
  Do NOT forget the triple backticks and the `<end_code>` tag — they are required for evaluation.
36
  Even if you can't answer the question fully, always provide reasoning and return a final_answer block.
37
  """
38
- model=InferenceClientModel(model_id="HuggingFaceH4/zephyr-7b-beta", api_key=hf_token)
 
 
 
39
  # --- Basic Agent Definition ---
40
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
41
  class BasicAgent:
 
35
  Do NOT forget the triple backticks and the `<end_code>` tag — they are required for evaluation.
36
  Even if you can't answer the question fully, always provide reasoning and return a final_answer block.
37
  """
38
+ model = InferenceClientModel(
39
+ model_id="Qwen/Qwen2.5-Coder-7B-Instruct",
40
+ provider="together"
41
+ )
42
  # --- Basic Agent Definition ---
43
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
44
  class BasicAgent: