Ubik80 commited on
Commit
f4be482
·
verified ·
1 Parent(s): b7f197f

fixed CodeAgent

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,11 +11,11 @@ model = HfApiModel()
11
  faq_bot = CodeAgent(
12
  tools=[faq_tool, search_tool],
13
  model=model,
14
- memory=True,
15
  planning_interval=3
16
  )
17
 
18
 
 
19
  def ask_bot(question):
20
  return faq_bot.run(question)
21
 
 
11
  faq_bot = CodeAgent(
12
  tools=[faq_tool, search_tool],
13
  model=model,
 
14
  planning_interval=3
15
  )
16
 
17
 
18
+
19
  def ask_bot(question):
20
  return faq_bot.run(question)
21