-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 991 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 991 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
38
39
40
41
42
[project]
name = "hiagent-sdk-monorepo"
version = "0.1.0"
description = "HiAgent SDK monorepo"
license = { text = "apache-2.0" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
[tool.uv.sources]
hiagent-api = { workspace = true }
hiagent-components = { workspace = true }
hiagent-eva = { workspace = true }
hiagent-observe = { workspace = true }
[tool.uv.workspace]
members = ["libs/api", "libs/components", "libs/eva", "libs/observe"]
[dependency-groups]
dev = [
"langchain>=0.3.25",
"pytest>=8.4.0",
"hiagent-components",
"hiagent-api",
"hiagent-eva",
"hiagent-observe",
"mcp>=1.23.0",
"langchain-core>=0.3.84",
"chainlit>=2.9.4",
"langchain-ollama>=0.3.3",
"starlette>=0.49.1",
"urllib3>=2.6.3",
"orjson>=3.11.6",
"protobuf>=5.29.6",
"PyJWT>=2.12.0",
"python-multipart>=0.0.22",
"python-socketio>=5.14.0",
"marshmallow>=3.26.2",
"pygments>=2.20.0",
"langchain-text-splitters>=0.3.9",
]