Files
copilotkit__copilotkit/packages/runtime-python/project.json
Mike Ryan 92afdb1f2c feat(runtime-python): add native Intelligence SDK and ASGI runtime
Provide native Intelligence SDK operations and runtime routes with
application-owned identity, durable runs, A2UI, MCP Apps, entitlements,
Inspector metadata, and telemetry. Include package docs, hosting examples,
and regression tests.
2026-09-11 15:55:30 -07:00

46 lines
1.1 KiB
JSON

{
"name": "runtime-python",
"projectType": "library",
"root": "packages/runtime-python",
"targets": {
"test": {
"executor": "nx:run-commands",
"inputs": ["default"],
"options": {
"command": "uv run pytest",
"cwd": "packages/runtime-python"
},
"cache": false,
"dependsOn": []
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "uv run ruff check . && uv run ruff format --check .",
"cwd": "packages/runtime-python"
},
"cache": false,
"dependsOn": []
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": "uv run mypy src tests/test_memory_result_types.py tests/test_thread_result_types.py",
"cwd": "packages/runtime-python"
},
"cache": false,
"dependsOn": []
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "uv build",
"cwd": "packages/runtime-python"
},
"cache": false,
"dependsOn": []
}
},
"tags": ["scope:runtime", "lang:python"]
}