Skip to content

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

  1. Go to the Upload page (https://rag.ia.limos.fr/)
  2. Click Create a new project
  3. Enter a name for your project and confirm
  4. You will be automatically redirected to the new project

Uploading Files

  1. Select your project in the sidebar
  2. Drag and drop files or click Select files
  3. Supported formats: Markdown (.md), text (.txt), and others
  4. Processing happens in the background – you will receive updates on the status

Discussing with Your Documents

  1. Go to the Chat page (https://rag.ia.limos.fr/chat)
  2. Select your project in the sidebar
  3. Type your question in the input field
  4. The system retrieves the relevant context and generates a response

How It Works

Document Processing

When uploading a file, the system:

  1. Splits your document into segments (small sections)
  2. Encodes each segment into numerical vectors for similarity search
  3. Extracts entities and relationships to build a knowledge graph
  4. Stores the data so it can be retrieved when you ask questions

Retrieving Discussions

When sending a question:

  1. Your query is converted into a numerical vector
  2. The most relevant segments are found using similarity search
  3. Linked entities and their connections are retrieved from the knowledge graph
  4. All context is sent to the AI to generate a response

Sharing Projects

Project owners can invite others to collaborate:

  1. Click the Members tab in the sidebar
  2. Click Create an invitation link
  3. Configure access:
  4. Role: Editor (can upload/delete) or Reader (read-only)
  5. Maximum uses: Optional limit
  6. Expiration: Optional expiration date
  7. 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.