bstraehle commited on
Commit
3285f8f
·
1 Parent(s): 9089ca4

Update agent_llamaindex.py

Browse files
Files changed (1) hide show
  1. agent_llamaindex.py +1 -1
agent_llamaindex.py CHANGED
@@ -23,7 +23,7 @@ def agent_llamaindex(config, prompt):
23
  date_tool = FunctionTool.from_defaults(fn = today_tool)
24
 
25
  agent = OpenAIAgent.from_tools(
26
- [tools[0], # built-in tools
27
  date_tool], # custom tools
28
  llm = llm,
29
  verbose = True
 
23
  date_tool = FunctionTool.from_defaults(fn = today_tool)
24
 
25
  agent = OpenAIAgent.from_tools(
26
+ [tools[0], # built-in tools
27
  date_tool], # custom tools
28
  llm = llm,
29
  verbose = True