doc: update reademe
Browse files
README.md
CHANGED
|
@@ -8,8 +8,53 @@ sdk: gradio
|
|
| 8 |
sdk_version: 5.33.0
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
|
|
|
| 11 |
license: mit
|
| 12 |
short_description: Deeply read any text in any language, from news to philosoph
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
sdk_version: 5.33.0
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
+
tags: ["mcp-server-track"]
|
| 12 |
license: mit
|
| 13 |
short_description: Deeply read any text in any language, from news to philosoph
|
| 14 |
---
|
| 15 |
|
| 16 |
+
# LogosAI 🚀
|
| 17 |
+
|
| 18 |
+
An intelligent system that reads, reasons about and transforms language.
|
| 19 |
+
|
| 20 |
+
**Deeply read any text in any language — OCR, correct, interpret & translate in one interactive demo!**
|
| 21 |
+
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
## Why LogosAI?
|
| 25 |
+
|
| 26 |
+
• **All-in-one pipeline**: Upload images/PDFs/plain text → OCR → AI-powered proofreading → genre-aware interpretation → translation.
|
| 27 |
+
• **Novel hackathon demo**: Leverages Mistral for OCR & correction, Gemini for interpretation/translation, served live as an MCP server.
|
| 28 |
+
• **Genre intelligence**: Tailored system prompts for news, narratives, poetry, philosophy and general texts.
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## ⚙️ Features
|
| 33 |
+
|
| 34 |
+
1. **OCR & Correction**
|
| 35 |
+
– Extract text from images/PDFs/text files
|
| 36 |
+
– Proofread markdown output with AI for typos & formatting
|
| 37 |
+
2. **Interpretation**
|
| 38 |
+
– Deep analysis of syntax, rhetoric & cultural context
|
| 39 |
+
– Supports “General” & “News” modes (more coming soon!)
|
| 40 |
+
3. **Translation**
|
| 41 |
+
– Faithful transforms into Deutsch, English, Français, Русский or 中文
|
| 42 |
+
4. **Live Gradio + MCP**
|
| 43 |
+
– runs with `mcp_server=True`
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
## 🚀 Quick Start
|
| 48 |
+
|
| 49 |
+
1. Clone this repo
|
| 50 |
+
2. `pip install -r requirements.txt` (with `python 3.13`!)
|
| 51 |
+
3. Set your keys:
|
| 52 |
+
```bash
|
| 53 |
+
export MISTRAL_API_KEY="…"
|
| 54 |
+
export GEMINI_API_KEY="…"
|
| 55 |
+
```
|
| 56 |
+
4. Launch the app:
|
| 57 |
+
```bash
|
| 58 |
+
python app.py
|
| 59 |
+
```
|
| 60 |
+
5. Open the Gradio link and start uploading, interpreting, translating!
|