Update agent.py
Browse files
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 |
-
|
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 |
"""
|