-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 988 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
39
40
41
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
target-version = ['py311']
[tool.poetry]
name = "gaianet-rag-api-pipeline"
version = "0.1.0"
description = ""
authors = ["RaidGuild <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/raid-guild/gaianet-rag-api-pipeline"
packages = [ { include = "gaianet_rag_api_pipeline" }, {include = "cli.py" } ]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
airbyte = "0.17.6"
black = "24.4.2"
click= "8.1.7"
pathway = {version = "0.14.0", extras = ["xpack-llm-docs"]}
pydantic = "2.7.4"
pydantic-settings = "2.4.0"
python-dotenv = "1.0.1"
openapi-spec-validator = "0.4.0"
litellm = "1.41.1"
qdrant-client = "1.11.0"
ollama = "^0.3.2"
codetiming = "^1.4.0"
aiohttp = "^3.10.10"
[tool.poetry.scripts]
rag-api-pipeline = "cli:entrypoint"
[tool.poetry.group.dev.dependencies]
requests-mock = "*"
pytest-mock = "*"
pytest = "*"