fix: update references from phidata to agno in routing agent implementation and documentation

This commit is contained in:
ShubhamSaboo
2025-06-23 20:52:03 -05:00
parent 5728fb86bc
commit 0c7527b4e1
3 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ A Streamlit application that demonstrates an advanced implementation of RAG Agen
- **Document Upload**: Users can upload multiple PDF documents related to a particular company. These documents are processed and stored in one of the three databases: Product Information, Customer Support & FAQ, or Financial Information.
- **Natural Language Querying**: Users can ask questions in natural language. The system automatically routes the query to the most relevant database using a phidata agent as the router.
- **Natural Language Querying**: Users can ask questions in natural language. The system automatically routes the query to the most relevant database using a agno agent as the router.
- **RAG Orchestration**: Utilizes Langchain for orchestrating the retrieval augmented generation process, ensuring that the most relevant information is retrieved and presented to the user.
@@ -47,7 +47,7 @@ A Streamlit application that demonstrates an advanced implementation of RAG Agen
## Technologies Used
- **Langchain**: For RAG orchestration, ensuring efficient retrieval and generation of information.
- **Phidata Agent**: Used as the router agent to determine the most relevant database for a given query.
- **Agno Agent**: Used as the router agent to determine the most relevant database for a given query.
- **LangGraph Agent**: Acts as a fallback mechanism, utilizing DuckDuckGo for web research when necessary.
- **Streamlit**: Provides a user-friendly interface for document upload and querying.
- **Qdrant**: Used for managing the databases, storing and retrieving document embeddings efficiently.