File size: 566 Bytes
f866820
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# RAG Document Assistant - Frontend

React + Vite frontend for the RAG Document Assistant.

## Stack

- React 18
- Vite
- Tailwind CSS v4

## Features

- Dropbox OAuth integration for file selection
- Client-side text chunking
- Zero-storage architecture (files never stored on server)
- Real-time processing status
- Query interface with cited answers

## Development

```bash
npm install
npm run dev
```

## Build

```bash
npm run build
```

## Environment

Create `.env` with:

```
VITE_API_URL=http://localhost:8000
VITE_DROPBOX_APP_KEY=your_dropbox_app_key
```