tommaso1288 commited on
Commit
4008f8e
·
1 Parent(s): ad8f765
Files changed (2) hide show
  1. src/agent/base_agent.py +3 -4
  2. src/try_cuda.py +2 -0
src/agent/base_agent.py CHANGED
@@ -44,8 +44,7 @@ class BaseAgent(ABC):
44
  max_steps=self.max_steps
45
  )
46
  agent.system_prompt += ("\nWhen answering, provide ONLY the precise answer requested. "
47
- "Do not include explanations, steps, reasoning, or additional text. "
48
- "Be direct and specific. GAIA benchmark requires exact matching answers.")
49
- # print(agent.system_prompt)
50
- print("Agent initialized.")
51
  return agent
 
44
  max_steps=self.max_steps
45
  )
46
  agent.system_prompt += ("\nWhen answering, provide ONLY the precise answer requested. "
47
+ "Do not include explanations, steps, reasoning, or additional text. ")
48
+ print(agent.system_prompt)
49
+ # print("Agent initialized.")
 
50
  return agent
src/try_cuda.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ import torch
2
+ print(torch.cuda.is_available())