File size: 1,020 Bytes
3b8df9e
 
 
 
 
 
 
 
 
49b9b9f
3b8df9e
696f5ad
 
3b8df9e
 
25d6a39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696f5ad
 
 
 
 
 
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
52
53
54
55
56
57
---
title: Chatbot
emoji: 🫑
colorFrom: green 
colorTo: indigo
sdk: gradio
sdk_version: 3.23.0
app_file: chatbot/app.py
pinned: false
license: unknown
---
# Vegan Recipe Chatbot



![Screenshot of Chatbot initial interface](docs/assets/chatbot_init.png)

## Quickstart

`git clone` the repo  

```sh
cd lv-recipe-chatbot
```  

Install Python poetry for dependency management.  

```sh
poetry install
```

Put API secrets in .env

```sh
cp .env.example .env
# edit .env with your secret key(s). Only OPEN_AI_KEY is required.
```

One option is to enter the poetry environment.  

```sh
poetry shell
```

Then start the Gradio demo.

```sh
python app.py
```

## Useful links

* [Task Matrix (Formerly Visual ChatGPT)](https://github.com/microsoft/TaskMatrix)
* [LangChain](https://python.langchain.com/en/latest/index.html)
* [LLM Prompt Engineering](https://www.promptingguide.ai)
* [OpenAI best practices for prompts](https://help.openai.com/en/articles/6654000-best-practices-for-prompt-engineering-with-openai-api)