ORromu commited on
Commit
a9a1f7c
·
verified ·
1 Parent(s): c20372b

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +3 -1
agent.py CHANGED
@@ -18,7 +18,9 @@ HUGGINGFACEHUB_API_TOKEN = getenv("HUGGINGFACEHUB_API_TOKEN")
18
 
19
  #chat = ChatHuggingFace(llm=llm, verbose=True)
20
 
21
- chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
 
 
22
  tools = [add,
23
  substract,
24
  multiply,
 
18
 
19
  #chat = ChatHuggingFace(llm=llm, verbose=True)
20
 
21
+ #chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
22
+
23
+ chat = ChatGroq(model="qwen-qwq-32b", temperature=0)
24
  tools = [add,
25
  substract,
26
  multiply,