138 Commits

Author SHA1 Message Date
Shubhamsaboo 7886415ce4 Remove multimodal RAG fallback paths 2026-05-09 13:56:58 -07:00
Shubhamsaboo 148872ffae Add multimodal agentic RAG demo 2026-05-03 23:34:55 -07:00
Ryan Alexander Alberts 78ee6b005f fix: unpin duckduckgo-search==6.4.1 (yanked from PyPI)
Version 6.4.1 is no longer distributed on PyPI (6.4.2 is the
closest available in the 6.4.x line). Four requirements.txt
files still pin the unavailable version, causing a hard
`pip install` failure on a clean checkout.

Widen to `>=6.4.2,<9` so the resolver picks the latest
compatible release (currently 8.1.1); the lower bound preserves
the original intent of pinning within the 6.4.x family, and the
upper bound matches the loosest existing pin elsewhere in the
repo (ai_competitor_intelligence_agent_team uses 7.2.1, the
ADK crash course uses `>=6.0.0`).

Affected projects:
- starter_ai_agents/ai_medical_imaging_agent
- rag_tutorials/rag_database_routing
- rag_tutorials/rag_agent_cohere
- advanced_ai_agents/multi_agent_apps/agent_teams/ai_teaching_agent_team

Fixes #63

Made-with: Cursor
2026-04-17 17:00:45 -04:00
PSBigBig × MiniPS 793e1979d9 Merge branch 'main' into main 2026-02-23 11:29:52 +08:00
PSBigBig × MiniPS 66cfb1bd9d chore: add gitignore for rag_failure_report.json output file 2026-02-23 11:16:24 +08:00
PSBigBig × MiniPS 9a8aa2e469 docs: remove external reference from Optional further reading section 2026-02-23 11:11:08 +08:00
PSBigBig × MiniPS 72b8fb8aac chore: rename RAG failure clinic tutorial folder 2026-02-22 14:47:40 +08:00
PSBigBig × MiniPS 469e92535c chore: rename RAG failure clinic tutorial folder
- Rename `rag_tutorials/wfgy_rag_failure_clinic` to
  `rag_tutorials/rag_failure_diagnostics_clinic`.
- Keep the existing files in place (README, script, requirements)
  so that the tutorial sits next to other RAG examples with a
  framework-agnostic name.
2026-02-22 14:46:36 +08:00
PSBigBig × MiniPS 306397caa7 chore: rename RAG failure clinic tutorial folder
- Rename `rag_tutorials/wfgy_rag_failure_clinic` to
  `rag_tutorials/rag_failure_diagnostics_clinic`.
- Keep the existing files in place (README, script, requirements)
  so that the tutorial sits next to other RAG examples with a
  framework-agnostic name.
2026-02-22 14:43:47 +08:00
Shubham Saboo 56d87e6980 Merge pull request #407 from bibinprathap/knowledge-graph-rag
Add Knowledge Graph RAG with Verifiable Citations example
2026-02-16 22:48:55 -08:00
PSBigBig × MiniPS d19b139f90 Update README.md 2026-02-09 13:47:15 +08:00
PSBigBig × MiniPS 69dae501cd Create requirements.txt 2026-02-09 13:39:18 +08:00
PSBigBig × MiniPS a13e36797f Update README.md 2026-02-09 13:38:44 +08:00
PSBigBig × MiniPS 97fa6a8eef Update README.md 2026-02-09 13:22:19 +08:00
PSBigBig × MiniPS 4decfbbfcd Update wfgy_rag_failure_clinic.py 2026-02-09 13:20:00 +08:00
PSBigBig × MiniPS 0d33e77903 Create wfgy_rag_failure_clinic.py 2026-02-09 13:05:47 +08:00
PSBigBig × MiniPS 6e0caeb689 Update README.md 2026-02-09 12:50:17 +08:00
PSBigBig × MiniPS f0d53c7d13 Create README.md 2026-02-09 12:44:00 +08:00
Shubhamsaboo 5e354da98a feat: enhance renovation rendering prompts using a detailed SLC formula and refactor search tool integration. 2026-01-31 20:55:58 -08:00
Shubham Saboo ee996b081f Update rag_tutorials/knowledge_graph_rag_citations/README.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-01-11 11:55:31 -06:00
Shubham Saboo 0254c4ab25 Update rag_tutorials/knowledge_graph_rag_citations/docker-compose.yml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-01-11 11:55:17 -06:00
BIBIN PRATHAP a650de1313 Address Copilot code review feedback
Fixes applied:
- Fix NEO4J_PLUGINS JSON syntax in docker-compose.yml
- Fix directory name mismatch in README.md
- Remove unused imports (Any, Optional), add re and os
- Use Tuple from typing instead of lowercase tuple
- Move 're' import to module level (PEP 8)
- Configure Ollama client with OLLAMA_HOST env var for Docker
- Fix Cypher injection: use parameterized query for hops
- Make CONTAINS queries case-insensitive with toLower()
- Add try-finally block to ensure graph.close() on exceptions
2026-01-03 04:50:22 -05:00
BIBIN PRATHAP 380ae4a590 Add Knowledge Graph RAG with Verifiable Citations example 2026-01-03 03:10:24 -05:00
Shubham Saboo cd103d24e5 Enhance README with tutorial link
Added a link to a free step-by-step tutorial in the README.
2025-11-30 21:27:11 -08:00
Shubhamsaboo 4d6140cdb4 chore: enhance README files across multiple agent applications by adding links to free step-by-step tutorials, providing users with comprehensive guidance on building each agent from scratch. 2025-11-27 21:58:03 -08:00
Shubhamsaboo 4fc1412062 refactor: Update corrective_rag to use Claude 4.5 Sonnet for LLM functionality 2025-11-09 14:56:26 -08:00
Shubhamsaboo 359e54e166 refactor: Update RAGPipeline to use Claude 4.5 Sonnet for response generation 2025-11-09 14:54:35 -08:00
Shubhamsaboo 37f72dad6d refactor: Update vision_rag.py to use the latest Gemini model
- Changed model from "gemini-2.5-flash-preview-04-17" to "gemini-2.5" for improved performance and stability.
2025-11-09 14:49:30 -08:00
Shubhamsaboo 013aa48bf5 refactor: Update qwen_local_rag_agent to use Agno v2.0 and enhance README
- Changed import path for OllamaEmbedder to reflect new Agno structure.
- Switched from show_tool_calls to debug_mode for improved debugging experience.
2025-11-09 14:44:22 -08:00
Shubhamsaboo 9bc6394fae refactor: Update local RAG agent to use AgentOS and enhance knowledge management
- Replaced PDFUrlKnowledgeBase with Knowledge class for improved document management.
- Updated to use AgentOS for the application interface instead of Playground.
- Adjusted README to reflect changes in the interface and knowledge base loading process.
- Specified minimum version for the 'agno' package in requirements.txt.
2025-11-09 14:41:25 -08:00
Shubhamsaboo 7c532cd8d6 refactor: Update rag_reasoning_agent to use Google Gemini and enhance knowledge management
- Replaced Claude model with Gemini for improved language processing.
- Updated knowledge management by replacing UrlKnowledge with Knowledge class.
- Enhanced session state handling to prevent duplicate URL loading.
- Adjusted README to reflect changes in API key requirements and default knowledge sources.
- Updated requirements.txt to specify a minimum version for the 'agno' package.
2025-11-09 12:06:51 -08:00
Shubhamsaboo 5685c508fc refactor: Update agentic_rag_gpt5 to use new Knowledge class and improve URL management
- Replaced UrlKnowledge with Knowledge for better document loading.
- Enhanced session state management for URLs to prevent duplicates.
- Updated placeholder URLs and query prompts for clarity.
- Adjusted requirements.txt to specify a minimum version for the 'agno' package.
2025-11-09 11:59:28 -08:00
Shubhamsaboo b7f74685a4 refactor: Update agentic_rag_embedding_gemma to use new Knowledge class and improve URL handling
- Replaced PDFUrlKnowledgeBase with Knowledge for managing document loading.
- Enhanced URL management by adding a check to prevent duplicate URLs in session state.
- Updated requirements.txt to specify a minimum version for the 'agno' package.
2025-11-09 11:49:29 -08:00
Shubham Saboo aec6ee95a5 Merge pull request #330 from Jinash-Rouniyar/main
feat: Add Contextual AI RAG agent
2025-09-07 02:39:23 -05:00
Shubhamsaboo eca2a2a99e refactor: Update README to reflect new Agentic RAG app with Embedding Gemma and remove outdated agent files 2025-09-06 18:51:42 -07:00
Shubhamsaboo 9ef14a6b41 feat: Add new local Agentic RAG app with EmbeddingGemma 2025-09-06 18:50:40 -07:00
Jinash Rouniyar 84fe9fbe1a feat: Add Contextual AI RAG agent 2025-09-05 05:05:07 -04:00
Shubham Saboo f22107daf1 Update agentic rag gpt5 README.md 2025-08-08 17:07:40 -05:00
Shubhamsaboo cbb10bc472 feat: Introduce Agentic RAG application with GPT-5 and LanceDB 2025-08-07 23:37:15 -05:00
ShubhamSaboo 0c7527b4e1 fix: update references from phidata to agno in routing agent implementation and documentation 2025-06-23 20:52:03 -05:00
方程 123f6d0651 Update README.md 2025-06-17 17:31:28 +08:00
ShubhamSaboo 2db04989ad updated rag_reasoning_agent 2025-06-06 17:50:54 -05:00
Shubham Saboo 641fbea532 Update README.md 2025-06-06 14:17:19 -05:00
ShubhamSaboo bc8f70b1da Updated README 2025-06-05 21:10:36 -05:00
ShubhamSaboo 3fd0513ba4 Added new demo 2025-06-05 20:44:01 -05:00
Shubham Saboo 197a0c02f1 Merge pull request #205 from Madhuvod/local-rag-qwen
Qwen RAG app: changed qdrant cloud to local
2025-05-14 15:11:42 -05:00
Madhu 35aba12a05 changed qdrant cloud to local 2025-05-14 21:50:53 +05:30
Shubham Saboo ccd4cf7a49 Merge pull request #199 from Madhuvod/local-rag-qwen
Added new Demo: Local RAG Agent with Qwen 3 and Gemma 3 Models
2025-05-05 13:52:19 -05:00
Madhu cf7c4ee842 NEW PROJ: Local RAG Agent with Qwen 3 and Gemma 3 Models 2025-05-06 00:18:47 +05:30
Shubham Saboo 51b9ed2c03 Updated math tutor README.md 2025-05-04 15:58:26 -05:00