Update agent.py
Browse files
agent.py
CHANGED
@@ -25,11 +25,6 @@ text_llm = Gemini(
|
|
25 |
|
26 |
multimodal_llm = text_llm
|
27 |
|
28 |
-
# Replace your current text_llm with:
|
29 |
-
text_llm = HuggingFaceInferenceAPI(
|
30 |
-
model_name="Qwen/Qwen2.5-72B-Instruct",
|
31 |
-
token=os.getenv("HUGGINGFACEHUB_API_TOKEN"),
|
32 |
-
)
|
33 |
|
34 |
class EnhancedRAGQueryEngine:
|
35 |
def __init__(self, task_context: str = ""):
|
|
|
25 |
|
26 |
multimodal_llm = text_llm
|
27 |
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
class EnhancedRAGQueryEngine:
|
30 |
def __init__(self, task_context: str = ""):
|