WeByT3 commited on
Commit
36b1c34
·
verified ·
1 Parent(s): 9c3adb5

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -12,7 +12,7 @@ tools = [add, substract, multiply, divide, web_search, transcribe_audio,
12
  fetch_youtube_transcript, wiki_search, arvix_search, read_excel_summary]
13
 
14
  def build_agent():
15
- llm = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0) # ChatGroq(model="qwen-qwq-32b", temperature=0)
16
  chat_with_tools = llm.bind_tools(tools)
17
 
18
  def assistant(state: MessagesState):
 
12
  fetch_youtube_transcript, wiki_search, arvix_search, read_excel_summary]
13
 
14
  def build_agent():
15
+ llm = ChatGroq(model="qwen-qwq-32b", temperature=0) # ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
16
  chat_with_tools = llm.bind_tools(tools)
17
 
18
  def assistant(state: MessagesState):