[PR #240] [CLOSED] QuizmasterPro #15049

Closed
opened 2026-07-15 07:07:13 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/240
Author: @maurizioorani
Created: 6/17/2025
Status: Closed

Base: mainHead: quizmaster-pro


📝 Commits (1)

📊 Changes

35 files changed (+7153 additions, -0 deletions)

View changed files

rag_tutorials/quizmaster_pro/.env.example (+10 -0)
rag_tutorials/quizmaster_pro/.gitattributes (+2 -0)
rag_tutorials/quizmaster_pro/.gitignore (+160 -0)
rag_tutorials/quizmaster_pro/.streamlit/config.toml (+28 -0)
rag_tutorials/quizmaster_pro/LICENSE (+21 -0)
rag_tutorials/quizmaster_pro/README.md (+212 -0)
rag_tutorials/quizmaster_pro/docker-compose.yml (+17 -0)
rag_tutorials/quizmaster_pro/download_gguf_model.py (+51 -0)
rag_tutorials/quizmaster_pro/requirements.txt (+31 -0)
rag_tutorials/quizmaster_pro/screenshots/QuizMasterPro.gif (+0 -0)
rag_tutorials/quizmaster_pro/screenshots/QuizMasterPro.mov (+0 -0)
rag_tutorials/quizmaster_pro/src/__init__.py (+1 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/__init__.py (+1 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/config.py (+41 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/context_manager.py (+49 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/database_manager.py (+301 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/document_processor.py (+391 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/file_parsers.py (+91 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/helpers.py (+208 -0)
rag_tutorials/quizmaster_pro/src/quizmaster/insights_generator.py (+1206 -0)

...and 15 more files

📄 Description

Introducing a novel RAG application where the AI proactively generates quizzes based on your documents, allowing it to question you and gauge your understanding. It also provides detailed feedback to enhance your learning.


🔄 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/240 **Author:** [@maurizioorani](https://github.com/maurizioorani) **Created:** 6/17/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `quizmaster-pro` --- ### 📝 Commits (1) - [`f34f83b`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/f34f83b60470164dfc41daa6a8de2d58a55aed5b) QuizmasterPro ### 📊 Changes **35 files changed** (+7153 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `rag_tutorials/quizmaster_pro/.env.example` (+10 -0) ➕ `rag_tutorials/quizmaster_pro/.gitattributes` (+2 -0) ➕ `rag_tutorials/quizmaster_pro/.gitignore` (+160 -0) ➕ `rag_tutorials/quizmaster_pro/.streamlit/config.toml` (+28 -0) ➕ `rag_tutorials/quizmaster_pro/LICENSE` (+21 -0) ➕ `rag_tutorials/quizmaster_pro/README.md` (+212 -0) ➕ `rag_tutorials/quizmaster_pro/docker-compose.yml` (+17 -0) ➕ `rag_tutorials/quizmaster_pro/download_gguf_model.py` (+51 -0) ➕ `rag_tutorials/quizmaster_pro/requirements.txt` (+31 -0) ➕ `rag_tutorials/quizmaster_pro/screenshots/QuizMasterPro.gif` (+0 -0) ➕ `rag_tutorials/quizmaster_pro/screenshots/QuizMasterPro.mov` (+0 -0) ➕ `rag_tutorials/quizmaster_pro/src/__init__.py` (+1 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/__init__.py` (+1 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/config.py` (+41 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/context_manager.py` (+49 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/database_manager.py` (+301 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/document_processor.py` (+391 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/file_parsers.py` (+91 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/helpers.py` (+208 -0) ➕ `rag_tutorials/quizmaster_pro/src/quizmaster/insights_generator.py` (+1206 -0) _...and 15 more files_ </details> ### 📄 Description Introducing a novel RAG application where the AI proactively generates quizzes based on your documents, allowing it to question you and gauge your understanding. It also provides detailed feedback to enhance your learning. --- <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-07-15 07:07:13 -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#15049