-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 815 Bytes
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
[tool.poetry]
name = "youtuber_ai_chatbot"
version = "0.1.0"
description = "Accurate answers for YouTube videos"
authors = ["jorgik1"]
license = "MIT"
packages = [{include = "youtuber_ai_chatbot"}]
# other fields...
readme = "README.rst"
[tool.poetry.dependencies]
python = ">=3.9.8,<4.0.0"
streamlit = "^1.22.0"
langchain = "0.0.177"
faiss-cpu = "^1.7.3"
openai = "^0.26.2"
tiktoken = "^0.4.0"
streamlit_elements = "^0.1"
youtube-transcript-api = "^0.6.0"
streamlit_chat = "^0.0.2"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^0.21.1"
pytest = "^7.2.1"
[tool.poetry.group.lint.dependencies]
isort = "^5.12.0"
black = {version = "^23.1a1", allow-prereleases = true}
flake8 = "^6.0.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"