Spaces:
Sleeping
Sleeping
Mituvinci commited on
Commit Β·
724cc79
1
Parent(s): f7cda5c
Clarify purpose: LLM self-examination simulation, not user quiz
Browse files
README.md
CHANGED
|
@@ -12,17 +12,19 @@ private: true
|
|
| 12 |
|
| 13 |
# Adaptive Study Agent
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
|
| 19 |
---
|
| 20 |
|
| 21 |
-
##
|
| 22 |
|
| 23 |
-
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
---
|
| 28 |
|
|
|
|
| 12 |
|
| 13 |
# Adaptive Study Agent
|
| 14 |
|
| 15 |
+
A **LLM self-examination simulation** built with **LangGraph** and **Claude (Anthropic)**. The agent reads any document you provide, then runs a fully autonomous study loop β the LLM generates its own comprehension questions, retrieves context from ChromaDB to answer them, and evaluates its own answers. The user does not answer any questions. The purpose is to **probe where the LLM's understanding of the document breaks down** β which topics it answers confidently versus where it scores low and needs to re-read.
|
| 16 |
|
| 17 |
+
The output is a structured session report revealing the LLM's weak areas within your document. This is useful for identifying conceptually dense or underrepresented sections in any text.
|
| 18 |
+
|
| 19 |
+
This project can be applied to **any domain** β machine learning papers, medical literature, legal documents, textbooks β anything in PDF or TXT format.
|
| 20 |
|
| 21 |
---
|
| 22 |
|
| 23 |
+
## Research Connection
|
| 24 |
|
| 25 |
+
This is a standalone extended example project inspired by ongoing research on multi-agent knowledge systems. The core idea β using retrieval-augmented self-evaluation to surface knowledge gaps β is the single-agent version of a feedback mechanism explored at scale in that research. There is no shared infrastructure or data pipeline between the two.
|
| 26 |
|
| 27 |
+
---
|
| 28 |
|
| 29 |
---
|
| 30 |
|