File size: 693 Bytes
cca4857
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "capstone"
version = "0.1.0"
description = ""
authors = ["PhucVu <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10"
llama-index = "^0.9.22"
weaviate-client = "^3.26.0"
pydantic-settings = "^2.1.0"
fastapi = "^0.108.0"
uvicorn = "^0.25.0"
pydantic = "^2.5.3"
gradio = "^4.12.0"

# reranker
torch = {version="^2.3.0", optional=true}
sentence-transformers = {version="^2.7.0", optional=true}

[tool.poetry.group.local]
optional = true
[tool.poetry.group.local.dependencies]
transformers = "^4.36.2"
torch = "^2.1.2"
llama-cpp-python = "^0.2.29"

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