File size: 703 Bytes
51727c4
a61504d
51727c4
0b9f9a6
 
51727c4
6699c07
2b4f517
51727c4
 
defa98b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
42
43
44
45
---
title: TowardsAI 🤝 Buster
emoji: 🤖
colorFrom: blue
colorTo: blue
sdk: gradio
sdk_version: 3.50.2
app_file: app.py
pinned: false
---
---
This project creates a helpful and accurate AI chatbot, leveraging GPT-3.5-Turbo and a RAG pipeline, specifically designed to address student questions about artificial intelligence with precision and clarity.

## Installation

Create a new Python environment

```bash
python -m venv .venv
```

Activate the environment

```bash
source .venv/bin/activate
```

Install the dependencies

```bash
pip install -r requirements.txt
```

## Usage

```bash
export ACTIVELOOP_TOKEN=...
export OPENAI_API_KEY=...
export MONGODB_URI=...
```

```bash
python app.py
```