-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
67 lines (56 loc) · 1.51 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "spark-ai-python"
version = "0.4.5"
description = "a sdk for iflytek's spark LLM."
authors = ["whybeyoung <[email protected]>", "mingduan <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "sparkai" }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
aiohttp = ">3.3"
requests = "*"
nest-asyncio = "^1.6.0"
websocket-client = "^1.7.0"
websockets = "*"
nest_asyncio = "*"
python-dotenv = "*"
packaging = "*"
tenacity = "*"
jsonpatch = "*"
pydantic = "*"
pyyaml = "*"
httpx = "*"
llama-index = "^0.10.24"
llama-index-vector-stores-chroma = "^0.1.6"
llama-index-core = { version = "^0.10.24.post1", optional = true }
pyautogen = { version = ">=0.2.20", optional = true }
uvicorn = { version = ">=0.26.0", optional = true }
fastapi = { extras = ["all"], version = "^0.110.0", optional = true}
[tool.poetry.extras]
llama_index = [
"llama-index-core",
"llama-index",
"llama-index-vector-stores-chroma",
]
autogen = [
"pyautogen"
]
proxy = [
"fastapi",
"uvicorn"
]
[tool.pytest.ini_options]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "my-custom-repo" # This name will be used in the configuration to retreive the proper credentials
url = "https://repo.model.xfyun.cn/api/packages/administrator/pypi" # URL used to download your packages from
priority = "primary"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "default"