File size: 645 Bytes
4edc753
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "lv-recipe-chatbot"
version = "0.1.0"
description = "Chatbot for recommending vegan recipes"
authors = ["Evan Lesmez <evanl@animalequality.org>"]
readme = "README.md"
packages = [{include = "lv_recipe_chatbot"}]

[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.0.145"
openai = "^0.27.4"
gradio = "^3.27.0"
jupyterlab = "^3.6.3"
tqdm = "^4.65.0"
transformers = "^4.28.1"
torch = "^2.0.0"
promptlayer = "^0.1.80"
python-dotenv = "^1.0.0"

[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^7.3.1"
mypy = "^1.2.0"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"