-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 950 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 = "rafa"
version = "0.1.0"
description = "python backend service to implement RAG and create AI assistants"
authors = ["rajnavakoti <rajnavakoti@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
requests = "^2.31.0"
flask = "^3.0.2"
python-dotenv = "^1.0.1"
pytest = "^8.0.1"
aiohttp = "^3.9.3"
streamlit = "^1.31.1"
llama-index = {git = "https://github.com/jerryjliu/llama_index.git"}
llama-index-readers-file = "^0.1.4"
sentence-transformers = "^2.4.0"
llama-index-embeddings-huggingface = "^0.1.3"
pyautogen = "^0.2.15"
ipython = "^8.22.1"
crewai = "^0.16.2"
pypdf = "^4.0.2"
langchain = "^0.1.9"
duckduckgo-search = "^4.5.0"
unstructured = "^0.12.5"
llama-index-llms-ollama = "^0.1.3"
certifi = "^2024.2.2"
chromadb = "<=0.5.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"