AntonVoronko commited on
Commit
fb905b1
·
verified ·
1 Parent(s): 714c7d1

temperature

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ class BasicAgent:
30
  arxiv_spec = ArxivToolSpec()
31
  arxiv_tool = FunctionTool.from_defaults(arxiv_spec.arxiv_query)
32
  # llm = Groq(model="deepseek-r1-distill-llama-70b", api_key=api_key)
33
- llm = Groq(model="qwen-qwq-32b", api_key=api_key)
34
  self.agent = FunctionAgent(tools=[search_tool, wiki_tool, arxiv_tool], llm=llm, system_prompt='''
35
  You are a general AI assistant.
36
  I will ask you a question. You can use the tools at your disposal to help you with an answer.
 
30
  arxiv_spec = ArxivToolSpec()
31
  arxiv_tool = FunctionTool.from_defaults(arxiv_spec.arxiv_query)
32
  # llm = Groq(model="deepseek-r1-distill-llama-70b", api_key=api_key)
33
+ llm = Groq(model="qwen-qwq-32b", api_key=api_key, temperature=0)
34
  self.agent = FunctionAgent(tools=[search_tool, wiki_tool, arxiv_tool], llm=llm, system_prompt='''
35
  You are a general AI assistant.
36
  I will ask you a question. You can use the tools at your disposal to help you with an answer.