File size: 966 Bytes
869b056
e9bc3e7
 
 
 
869b056
e9bc3e7
869b056
 
e9bc3e7
869b056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
47
48
49
50
51
---
title: Ai Tutor
emoji: 🌍
colorFrom: purple
colorTo: red
sdk: gradio
sdk_version: 5.16.1
app_file: app.py
pinned: false
short_description: Towards AI Academy lesson
---

# Building and Deploying a Gradio UI on Hugging Face Spaces

## Overview

This repository contains the code of the "Building and Deploying a Gradio UI on Hugging Face Spaces" lesson of the "From Beginner to Advanced LLM Developer" course.

## Setup

1. Clone the repository.

```bash
git clone git@github.com:towardsai/ai-tutor-gradio-lesson.git
cd ai-tutor-gradio-lesson
```

2. Create a `.env` file and add there your OpenAI API key. Its content should be something like:

```bash
OPENAI_API_KEY="sk-..."
```

3. Create a local virtual environment, for example using the `venv` module. Then, activate it.

```bash
python -m venv venv
source venv/bin/activate
```

4. Install the dependencies.

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

5. Launch the Gradio app.

```bash
python app.py