Added writer agent to generate answers
Browse files
agents/llama_index_agent.py
CHANGED
@@ -4,7 +4,7 @@ from llama_index.core.agent.workflow import (
|
|
4 |
)
|
5 |
from llama_index.core.llms import LLM
|
6 |
import os
|
7 |
-
from typing import Optional, List, Any
|
8 |
from llama_index.llms.openai import OpenAI
|
9 |
from llama_index.llms.anthropic import Anthropic
|
10 |
|
|
|
4 |
)
|
5 |
from llama_index.core.llms import LLM
|
6 |
import os
|
7 |
+
from typing import Optional, List, Any, Dict
|
8 |
from llama_index.llms.openai import OpenAI
|
9 |
from llama_index.llms.anthropic import Anthropic
|
10 |
|