mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
f5462915c3
- static_danger: removed undefined matrix.node-version, upgraded to v4, added concurrency and timeout - python-sdk: added concurrency and timeout, pinned ag-ui-langgraph <0.0.32 (0.0.32 imports non-existent ImageInputContent from ag_ui.core)
42 lines
1007 B
TOML
42 lines
1007 B
TOML
[tool.poetry]
|
|
name = "copilotkit"
|
|
version = "0.1.86"
|
|
description = "CopilotKit python SDK"
|
|
authors = ["Markus Ecker <markus.ecker@gmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://copilotkit.ai"
|
|
repository = "https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python"
|
|
keywords = [
|
|
"copilot",
|
|
"copilotkit",
|
|
"langgraph",
|
|
"langchain",
|
|
"ai",
|
|
"langsmith",
|
|
"langserve",
|
|
]
|
|
packages = [{ include = "copilotkit" }]
|
|
include = ["copilotkit/*.json"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<3.13"
|
|
langgraph = { version = ">=0.3.25,<2" }
|
|
langchain = { version = ">=0.3.0" }
|
|
crewai = { version = "0.118.0", optional = true }
|
|
ag-ui-langgraph = { version = ">=0.0.29,<0.0.32", extras = ["fastapi"] }
|
|
ag-ui-protocol = ">=0.1.11"
|
|
fastapi = ">=0.115.0,<1.0.0"
|
|
partialjson = "^0.0.8"
|
|
toml = "^0.10.2"
|
|
|
|
[tool.poetry.extras]
|
|
crewai = ["crewai"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest (>=9.0.2,<10.0.0)"]
|