beerohan commited on
Commit ·
5af2bb9
1
Parent(s): 3a72e1d
Rename to Studyson
Browse files- studyrag/README.md +2 -2
- studyrag/app/main.py +2 -2
- studyrag/static/index.html +2 -2
studyrag/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
#
|
| 2 |
|
| 3 |
-
A full-stack Retrieval-Augmented Generation (RAG) system for intelligent document question-answering and summarization. Built with FastAPI, LlamaIndex, and
|
| 4 |
|
| 5 |
## Features
|
| 6 |
|
|
|
|
| 1 |
+
# Studyson - RAG Document QA & Summarization API
|
| 2 |
|
| 3 |
+
A full-stack Retrieval-Augmented Generation (RAG) system for intelligent document question-answering and summarization. Built with FastAPI, LlamaIndex, and Groq AI.
|
| 4 |
|
| 5 |
## Features
|
| 6 |
|
studyrag/app/main.py
CHANGED
|
@@ -15,7 +15,7 @@ from app.services.rag_service import RAGService
|
|
| 15 |
from app.utils.document_processor import DocumentProcessor
|
| 16 |
|
| 17 |
app = FastAPI(
|
| 18 |
-
title="
|
| 19 |
description="Document QA and Summarization using RAG",
|
| 20 |
version="1.0.0"
|
| 21 |
)
|
|
@@ -198,7 +198,7 @@ async def reset_index():
|
|
| 198 |
async def get_status():
|
| 199 |
return StatusResponse(
|
| 200 |
status="online",
|
| 201 |
-
message="
|
| 202 |
details={
|
| 203 |
"has_documents": rag_service.has_documents(),
|
| 204 |
"indexed_documents": rag_service.get_indexed_documents(),
|
|
|
|
| 15 |
from app.utils.document_processor import DocumentProcessor
|
| 16 |
|
| 17 |
app = FastAPI(
|
| 18 |
+
title="Studyson RAG API",
|
| 19 |
description="Document QA and Summarization using RAG",
|
| 20 |
version="1.0.0"
|
| 21 |
)
|
|
|
|
| 198 |
async def get_status():
|
| 199 |
return StatusResponse(
|
| 200 |
status="online",
|
| 201 |
+
message="Studyson RAG API is running",
|
| 202 |
details={
|
| 203 |
"has_documents": rag_service.has_documents(),
|
| 204 |
"indexed_documents": rag_service.get_indexed_documents(),
|
studyrag/static/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>
|
| 7 |
<link rel="stylesheet" href="/static/css/style.css">
|
| 8 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
| 9 |
</head>
|
|
@@ -24,7 +24,7 @@
|
|
| 24 |
</defs>
|
| 25 |
</svg>
|
| 26 |
</div>
|
| 27 |
-
<h1 class="logo-text">
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<nav class="nav-menu">
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Studyson - Smart Document Assistant</title>
|
| 7 |
<link rel="stylesheet" href="/static/css/style.css">
|
| 8 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
| 9 |
</head>
|
|
|
|
| 24 |
</defs>
|
| 25 |
</svg>
|
| 26 |
</div>
|
| 27 |
+
<h1 class="logo-text">Studyson</h1>
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<nav class="nav-menu">
|