iamTangsang commited on
Commit
fccde42
·
verified ·
1 Parent(s): 564890a

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +3 -1
agent.py CHANGED
@@ -23,7 +23,7 @@ configure(api_key=os.getenv("GOOGLE_API_KEY"))
23
  #logger = logging.getLogger(__name__)
24
 
25
  # --- Model Configuration ---
26
- GEMINI_MODEL_NAME = "gemini/gemini-2.0-flash"
27
  OPENAI_MODEL_NAME = "openai/gpt-4o"
28
  GROQ_MODEL_NAME = "groq/llama3-70b-8192"
29
  DEEPSEEK_MODEL_NAME = "deepseek/deepseek-chat"
@@ -250,6 +250,8 @@ class BasicAgent:
250
  A: b, e
251
  Q: How many at bats did the Yankee with the most walks in the 1977 regular season have that same season?,
252
  A: 519
 
 
253
  """
254
  )
255
 
 
23
  #logger = logging.getLogger(__name__)
24
 
25
  # --- Model Configuration ---
26
+ GEMINI_MODEL_NAME = "gemini/gemini-2.0-flash-lite"
27
  OPENAI_MODEL_NAME = "openai/gpt-4o"
28
  GROQ_MODEL_NAME = "groq/llama3-70b-8192"
29
  DEEPSEEK_MODEL_NAME = "deepseek/deepseek-chat"
 
250
  A: b, e
251
  Q: How many at bats did the Yankee with the most walks in the 1977 regular season have that same season?,
252
  A: 519
253
+
254
+ OUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
255
  """
256
  )
257