mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-03-09 07:25:00 -05:00
feat: add RAG Agent with Database Routing to README and update titles
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# RAG Agent with Database Routing
|
||||
# 📠 RAG Agent with Database Routing
|
||||
|
||||
A Streamlit application that demonstrates an advanced implementation of RAG Agent with intelligent query routing. The system combines multiple specialized databases with smart fallback mechanisms to ensure reliable and accurate responses to user queries.
|
||||
|
||||
@@ -12,8 +12,6 @@ A Streamlit application that demonstrates an advanced implementation of RAG Agen
|
||||
|
||||
- **Fallback Mechanism**: If no relevant documents are found in the databases, a LangGraph agent with a DuckDuckGo search tool is used to perform web research and provide an answer.
|
||||
|
||||
- **User Interface**: Built with Streamlit, providing an intuitive and interactive user experience.
|
||||
|
||||
## How to Run?
|
||||
|
||||
1. **Clone the Repository**:
|
||||
|
||||
@@ -286,7 +286,7 @@ def _handle_web_fallback(question: str) -> tuple[str, list]:
|
||||
def main():
|
||||
"""Main application function."""
|
||||
st.set_page_config(page_title="RAG Agent with Database Routing", page_icon="📚")
|
||||
st.title("📚 RAG Agent with Database Routing")
|
||||
st.title("📠 RAG Agent with Database Routing")
|
||||
|
||||
# Sidebar for API keys and configuration
|
||||
with st.sidebar:
|
||||
|
||||
Reference in New Issue
Block a user