joronoso commited on
Commit
70c710d
·
verified ·
1 Parent(s): 1cc8ff6

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -5
agent.py CHANGED
@@ -6,15 +6,11 @@ import logging
6
  from llama_index.llms.deepinfra import DeepInfraLLM
7
  import os
8
  from llama_index.tools.tavily_research import TavilyToolSpec
9
- from dotenv import load_dotenv
10
  from llama_index.core.prompts import PromptTemplate
11
  import requests
12
  import json
13
 
14
- logging.basicConfig(level=logging.INFO)
15
- load_dotenv()
16
-
17
- class BasicAgent:
18
  """
19
  Agent using LlamaIndex to fetch data from the web and answer GAIA benchmark questions.
20
  """
 
6
  from llama_index.llms.deepinfra import DeepInfraLLM
7
  import os
8
  from llama_index.tools.tavily_research import TavilyToolSpec
 
9
  from llama_index.core.prompts import PromptTemplate
10
  import requests
11
  import json
12
 
13
+ class JoroBasicAgent:
 
 
 
14
  """
15
  Agent using LlamaIndex to fetch data from the web and answer GAIA benchmark questions.
16
  """