-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
38 lines (35 loc) · 882 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "openplexity-pages"
version = "0.0.1"
description = "Open-Source Perplexity Pages"
authors = [
"Alessandro Fazio <[email protected]>",
"Vasile Bobeica <[email protected]>",
"Nicola Brisotto <[email protected]>"
]
[tool.poetry.scripts]
openplexity-pages = "main:main"
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
pydantic = "*"
crewai = "*"
setuptools = "*"
python-decouple = "*"
streamlit = "^1.3.0"
python-dotenv = "^1.0.1"
openai = "^1.35.14"
watchdog = "^4.0.1"
certifi = "^2024.7.4"
vertexai = "^1.49.0"
streamlit-image-select = "^0.6.0"
st-clickable-images = "^0.0.3"
st-click-detector = "^0.1.3"
dedent = "^0.5"
langchain-openai = "^0.1.17"
langchain-groq = "^0.1.6"
crewai-tools = "^0.4.26"
groq = "^0.9.0"
markdown = "^3.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"