Spaces:
Build error
Build error
Ali Kadhim commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,14 +9,28 @@ A GitHub account
|
|
| 9 |
Docker installed on your local machine
|
| 10 |
A Huggingface Spaces account
|
| 11 |
|
|
|
|
| 12 |
### Building our App
|
| 13 |
-
Clone this repo
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
Navigate inside this repo
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
Add your OpenAI Key to `.env` file and save the file.
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
Let's try deploying it locally. Make sure you're in the python environment where you installed Chainlit and OpenAI.
|
| 22 |
|
|
|
|
| 9 |
Docker installed on your local machine
|
| 10 |
A Huggingface Spaces account
|
| 11 |
|
| 12 |
+
|
| 13 |
### Building our App
|
| 14 |
+
Clone [this](https://github.com/AI-Maker-Space/Beyond-ChatGPT/tree/main) repo.
|
| 15 |
+
|
| 16 |
+
``` bash
|
| 17 |
+
git clone https://github.com/AI-Maker-Space/Beyond-ChatGPT.git
|
| 18 |
+
```
|
| 19 |
|
| 20 |
Navigate inside this repo
|
| 21 |
+
```
|
| 22 |
+
cd Beyond-ChatGPT
|
| 23 |
+
```
|
| 24 |
|
| 25 |
+
Install the packages required for this python envirnoment in `requirements.txt`.
|
| 26 |
+
```
|
| 27 |
+
pip install -r requirements.txt
|
| 28 |
+
```
|
| 29 |
|
| 30 |
Add your OpenAI Key to `.env` file and save the file.
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
|
| 35 |
Let's try deploying it locally. Make sure you're in the python environment where you installed Chainlit and OpenAI.
|
| 36 |
|