From d7e4d0ee30c6ad2c4dbe014ffed6a56681af09a8 Mon Sep 17 00:00:00 2001 From: ShubhamSaboo Date: Tue, 4 Feb 2025 01:16:22 +0100 Subject: [PATCH] chore: updated README --- README.md | 1 + rag_tutorials/gemini_agentic_rag/README.md | 2 +- rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ac2e612..077cd5a 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ A curated collection of awesome LLM apps built with RAG and AI agents. This repo - [👨‍⚖️ AI Legal Agent Team](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_legal_agent_team) - [💼 AI Recruitment Agent Team](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_recruitment_agent_team) - [👨‍💼 AI Services Agency](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_services_agency) +- [🧲 AI Competitor Intelligence Agent Team](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_competitor_intelligence_agent_team) - [🏋️‍♂️ AI Health & Fitness Planner Agent](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_health_fitness_agent) - [📈 AI Startup Trend Analysis Agent](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_startup_trend_analysis_agent) - [🗞️ AI Journalist Agent](https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/ai_agent_tutorials/ai_journalist_agent) diff --git a/rag_tutorials/gemini_agentic_rag/README.md b/rag_tutorials/gemini_agentic_rag/README.md index 0042f11..cc02aa6 100644 --- a/rag_tutorials/gemini_agentic_rag/README.md +++ b/rag_tutorials/gemini_agentic_rag/README.md @@ -1,4 +1,4 @@ -# Agentic RAG with Gemini Thinking ⌘G +# 🤔 Agentic RAG with Gemini Thinking A RAG Agentic system built with the new Gemini 2.0 Flash Thinking model and gemini-exp-1206, Qdrant for vector storage, and Agno (phidata prev) for agent orchestration. This application features intelligent query rewriting, document processing, and web search fallback capabilities to provide comprehensive AI-powered responses. diff --git a/rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py b/rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py index 173f8c0..b27ac88 100644 --- a/rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py +++ b/rag_tutorials/gemini_agentic_rag/agentic_rag_gemini.py @@ -39,7 +39,7 @@ COLLECTION_NAME = "gemini-thinking-agent-agno" # Streamlit App Initialization -st.title("🤖 Agentic RAG with Gemini Thinking and Agno") +st.title("🤔 Agentic RAG with Gemini Thinking and Agno") # Session State Initialization if 'google_api_key' not in st.session_state: