Spaces:
Sleeping
Sleeping
Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,59 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Vion AI Chatbot
|
| 2 |
+
|
| 3 |
+

|
| 4 |
+
|
| 5 |
+
A multi-modal AI assistant with capabilities including document summarization, image captioning, question answering, visual QA, data visualization code generation, and document translation.
|
| 6 |
+
|
| 7 |
+
## Features
|
| 8 |
+
|
| 9 |
+
- **Document Summarization**: Extract key points from PDFs, Word docs, or plain text
|
| 10 |
+
- **Image Understanding**: Generate captions for images or answer questions about them
|
| 11 |
+
- **Question Answering**: Get answers from provided text context
|
| 12 |
+
- **Data Visualization**: Upload Excel files to get Python visualization code
|
| 13 |
+
- **Document Translation**: Translate between multiple languages
|
| 14 |
+
|
| 15 |
+
## Supported File Types
|
| 16 |
+
|
| 17 |
+
- **Text**: `.pdf`, `.docx`, `.txt`
|
| 18 |
+
- **Images**: `.jpg`, `.jpeg`, `.png`
|
| 19 |
+
- **Data**: `.xlsx`, `.xls`
|
| 20 |
+
|
| 21 |
+
## Supported Languages for Translation
|
| 22 |
+
|
| 23 |
+
- French (`fr`)
|
| 24 |
+
- Spanish (`es`)
|
| 25 |
+
- German (`de`)
|
| 26 |
+
- Chinese (`zh`)
|
| 27 |
+
- Arabic (`ar`)
|
| 28 |
+
- Russian (`ru`)
|
| 29 |
+
- Japanese (`ja`)
|
| 30 |
+
|
| 31 |
+
## How to Use
|
| 32 |
+
|
| 33 |
+
1. **Type your question** in the chat box
|
| 34 |
+
2. **Upload a file** if needed (document, image, or spreadsheet)
|
| 35 |
+
3. The AI will automatically detect the appropriate task
|
| 36 |
+
4. **Special commands**:
|
| 37 |
+
- `/translate [lang] [text]` - Translate text (e.g., `/translate fr Hello`)
|
| 38 |
+
- `/qa [question]` - Answer a question from provided context
|
| 39 |
+
|
| 40 |
+
## Deployment
|
| 41 |
+
|
| 42 |
+
### Hugging Face Spaces
|
| 43 |
+
|
| 44 |
+
1. Create a new Space with Docker
|
| 45 |
+
2. Upload all files from this repository
|
| 46 |
+
3. The Space will automatically build and deploy
|
| 47 |
+
|
| 48 |
+
### Local Development
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
# Clone the repository
|
| 52 |
+
git clone https://github.com/yourusername/vion-ai.git
|
| 53 |
+
cd vion-ai
|
| 54 |
+
|
| 55 |
+
# Install dependencies
|
| 56 |
+
pip install -r requirements.txt
|
| 57 |
+
|
| 58 |
+
# Run the application
|
| 59 |
+
uvicorn app:app --reload
|