RAGondin User Guide✯
An application for Retrieval-Augmented Generation that allows you to upload documents and discuss with them using AI.
Getting Started✯
Creating a Project✯
- Go to the Upload page (
https://rag.ia.limos.fr/) - Click Create a new project
- Enter a name for your project and confirm
- You will be automatically redirected to the new project
Uploading Files✯
- Select your project in the sidebar
- Drag and drop files or click Select files
- Supported formats: Markdown (.md), text (.txt), and others
- Processing happens in the background – you will receive updates on the status
Discussing with Your Documents✯
- Go to the Chat page (
https://rag.ia.limos.fr/chat) - Select your project in the sidebar
- Type your question in the input field
- The system retrieves the relevant context and generates a response
How It Works✯
Document Processing✯
When uploading a file, the system:
- Splits your document into segments (small sections)
- Encodes each segment into numerical vectors for similarity search
- Extracts entities and relationships to build a knowledge graph
- Stores the data so it can be retrieved when you ask questions
Retrieving Discussions✯
When sending a question:
- Your query is converted into a numerical vector
- The most relevant segments are found using similarity search
- Linked entities and their connections are retrieved from the knowledge graph
- All context is sent to the AI to generate a response
Sharing Projects✯
Project owners can invite others to collaborate:
- Click the Members tab in the sidebar
- Click Create an invitation link
- Configure access:
- Role: Editor (can upload/delete) or Reader (read-only)
- Maximum uses: Optional limit
- Expiration: Optional expiration date
- Copy the link and share it Invitees click the link to automatically access the project.
Role Permissions✯
| Action | Owner | Editor | Reader |
|---|---|---|---|
| View files and chat | ✅ | ✅ | ✅ |
| Upload files | ✅ | ✅ | ❌ |
| Delete their own files | ✅ | ✅ | ❌ |
| Delete all files | ✅ | ❌ | ❌ |
| Manage members | ✅ | ❌ | ❌ |
| Create invitation links | ✅ | ❌ | ❌ |
| Delete project | ✅ | ❌ | ❌ |
File Management✯
- View files: Browse uploaded files with pagination
- Retry failures: Re-process files that failed during splitting
- Delete files: Remove a file and all its associated data
- Delete all: Clear all files from the project (owner-only)
Supported File Types✯
- Markdown (.md)
- Text files (.txt)
- Other text-based formats The system preserves document structure (headers, code blocks, Markdown tables) and splits raw text at sentence boundaries.