ORromu commited on
Commit
afece27
·
verified ·
1 Parent(s): 7fad727

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -15
agent.py CHANGED
@@ -46,21 +46,7 @@ sys_msg = SystemMessage(content=system_prompt)
46
 
47
 
48
  # Loading the assistant
49
- #chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
50
- # chat = ChatGoogleGenerativeAI(
51
- # model="gemini-2.5-flash-preview-04-17",
52
- # temperature=0,
53
- # max_retries=1,
54
- # rate_limiter=InMemoryRateLimiter(
55
- # requests_per_second=1/60,
56
- # ),
57
- # )
58
- chat = ChatGroq(model_name="llama3-70b-8192",
59
- temperature=0,
60
- rate_limiter=InMemoryRateLimiter(
61
- requests_per_second=1/60,
62
- ),
63
- )
64
 
65
  tools = [add,
66
  substract,
 
46
 
47
 
48
  # Loading the assistant
49
+ chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  tools = [add,
52
  substract,