mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
92afdb1f2c
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.
46 lines
1.1 KiB
JSON
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"]
|
|
}
|