Skip to content

Commit

Permalink
feat: add RAG Agent with Database Routing to README and update titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubhamsaboo committed Dec 27, 2024
1 parent 305f415 commit 5e01494
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ A curated collection of awesome LLM apps built with RAG and AI agents. This repo
- [🦙 Local RAG Agent](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/rag_tutorials/local_rag_agent)
- [👀 RAG App with Hybrid Search](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/rag_tutorials/hybrid_search_rag)
- [🖥️ Local RAG App with Hybrid Search](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/rag_tutorials/local_hybrid_search_rag)
- [📠 RAG Agent with Database Routing](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/rag_tutorials/rag_database_routing)

### LLM Apps with Memory
- [💾 AI Arxiv Agent with Memory](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/llm_apps_with_memory_tutorials/ai_arxiv_agent_memory)
Expand Down
4 changes: 1 addition & 3 deletions rag_tutorials/rag_database_routing/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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**:
Expand Down
2 changes: 1 addition & 1 deletion rag_tutorials/rag_database_routing/rag_database_routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5e01494

Please sign in to comment.