[PR #779] [MERGED] Add multimodal agentic RAG demo #7724

Closed
opened 2026-06-03 21:52:59 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/779
Author: @Shubhamsaboo
Created: 5/4/2026
Status: Merged
Merged: 5/4/2026
Merged by: @Shubhamsaboo

Base: mainHead: codex/multimodal-agentic-rag


📝 Commits (1)

  • 148872f Add multimodal agentic RAG demo

📊 Changes

19 files changed (+4680 additions, -0 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 README.md (+1 -0)
rag_tutorials/multimodal_agentic_rag/README.md (+122 -0)
rag_tutorials/multimodal_agentic_rag/assets/multimodal-agentic-rag-architecture.png (+0 -0)
rag_tutorials/multimodal_agentic_rag/backend/agentic_rag_agent/__init__.py (+3 -0)
rag_tutorials/multimodal_agentic_rag/backend/agentic_rag_agent/agent.py (+43 -0)
rag_tutorials/multimodal_agentic_rag/backend/app_state.py (+4 -0)
rag_tutorials/multimodal_agentic_rag/backend/rag_store.py (+550 -0)
rag_tutorials/multimodal_agentic_rag/backend/requirements.txt (+7 -0)
rag_tutorials/multimodal_agentic_rag/backend/server.py (+251 -0)
rag_tutorials/multimodal_agentic_rag/frontend/index.html (+13 -0)
rag_tutorials/multimodal_agentic_rag/frontend/package-lock.json (+1810 -0)
rag_tutorials/multimodal_agentic_rag/frontend/package.json (+26 -0)
rag_tutorials/multimodal_agentic_rag/frontend/src/App.tsx (+782 -0)
rag_tutorials/multimodal_agentic_rag/frontend/src/main.tsx (+10 -0)
rag_tutorials/multimodal_agentic_rag/frontend/src/styles.css (+1025 -0)
rag_tutorials/multimodal_agentic_rag/frontend/src/vite-env.d.ts (+1 -0)
rag_tutorials/multimodal_agentic_rag/frontend/tsconfig.json (+21 -0)
rag_tutorials/multimodal_agentic_rag/frontend/vite.config.ts (+9 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/779 **Author:** [@Shubhamsaboo](https://github.com/Shubhamsaboo) **Created:** 5/4/2026 **Status:** ✅ Merged **Merged:** 5/4/2026 **Merged by:** [@Shubhamsaboo](https://github.com/Shubhamsaboo) **Base:** `main` ← **Head:** `codex/multimodal-agentic-rag` --- ### 📝 Commits (1) - [`148872f`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/148872ffaec50e71930733d74f75e74e52ef42fd) Add multimodal agentic RAG demo ### 📊 Changes **19 files changed** (+4680 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `README.md` (+1 -0) ➕ `rag_tutorials/multimodal_agentic_rag/README.md` (+122 -0) ➕ `rag_tutorials/multimodal_agentic_rag/assets/multimodal-agentic-rag-architecture.png` (+0 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/agentic_rag_agent/__init__.py` (+3 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/agentic_rag_agent/agent.py` (+43 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/app_state.py` (+4 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/rag_store.py` (+550 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/requirements.txt` (+7 -0) ➕ `rag_tutorials/multimodal_agentic_rag/backend/server.py` (+251 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/index.html` (+13 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/package-lock.json` (+1810 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/package.json` (+26 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/src/App.tsx` (+782 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/src/main.tsx` (+10 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/src/styles.css` (+1025 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/src/vite-env.d.ts` (+1 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/tsconfig.json` (+21 -0) ➕ `rag_tutorials/multimodal_agentic_rag/frontend/vite.config.ts` (+9 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-03 21:52:59 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#7724