Spaces:
Sleeping
Sleeping
Update agent.py
Browse files
agent.py
CHANGED
|
@@ -11,7 +11,7 @@ from typing import TypedDict
|
|
| 11 |
tools = [add, substract, multiply, divide, web_search]
|
| 12 |
|
| 13 |
def build_agent():
|
| 14 |
-
llm =
|
| 15 |
chat_with_tools = llm.bind_tools(tools)
|
| 16 |
|
| 17 |
def assistant(state: MessagesState):
|
|
|
|
| 11 |
tools = [add, substract, multiply, divide, web_search]
|
| 12 |
|
| 13 |
def build_agent():
|
| 14 |
+
llm = ChatGroq(model="qwen-qwq-32b", temperature=0) # ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
|
| 15 |
chat_with_tools = llm.bind_tools(tools)
|
| 16 |
|
| 17 |
def assistant(state: MessagesState):
|