kubiya-control-plane-api 0.1.0__py3-none-any.whl → 0.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kubiya-control-plane-api might be problematic. Click here for more details.
- control_plane_api/README.md +266 -0
- control_plane_api/__init__.py +0 -0
- control_plane_api/__version__.py +1 -0
- control_plane_api/alembic/README +1 -0
- control_plane_api/alembic/env.py +98 -0
- control_plane_api/alembic/script.py.mako +28 -0
- control_plane_api/alembic/versions/1382bec74309_initial_migration_with_all_models.py +251 -0
- control_plane_api/alembic/versions/1f54bc2a37e3_add_analytics_tables.py +162 -0
- control_plane_api/alembic/versions/2e4cb136dc10_rename_toolset_ids_to_skill_ids_in_teams.py +30 -0
- control_plane_api/alembic/versions/31cd69a644ce_add_skill_templates_table.py +28 -0
- control_plane_api/alembic/versions/89e127caa47d_add_jobs_and_job_executions_tables.py +161 -0
- control_plane_api/alembic/versions/add_llm_models_table.py +51 -0
- control_plane_api/alembic/versions/b0e10697f212_add_runtime_column_to_teams_simple.py +42 -0
- control_plane_api/alembic/versions/ce43b24b63bf_add_execution_trigger_source_and_fix_.py +155 -0
- control_plane_api/alembic/versions/d4eaf16e3f8d_rename_toolsets_to_skills.py +84 -0
- control_plane_api/alembic/versions/efa2dc427da1_rename_metadata_to_custom_metadata.py +32 -0
- control_plane_api/alembic/versions/f973b431d1ce_add_workflow_executor_to_skill_types.py +44 -0
- control_plane_api/alembic.ini +148 -0
- control_plane_api/api/index.py +12 -0
- control_plane_api/app/__init__.py +11 -0
- control_plane_api/app/activities/__init__.py +20 -0
- control_plane_api/app/activities/agent_activities.py +379 -0
- control_plane_api/app/activities/team_activities.py +410 -0
- control_plane_api/app/activities/temporal_cloud_activities.py +577 -0
- control_plane_api/app/config/__init__.py +35 -0
- control_plane_api/app/config/api_config.py +354 -0
- control_plane_api/app/config/model_pricing.py +318 -0
- control_plane_api/app/config.py +95 -0
- control_plane_api/app/database.py +135 -0
- control_plane_api/app/exceptions.py +408 -0
- control_plane_api/app/lib/__init__.py +11 -0
- control_plane_api/app/lib/job_executor.py +312 -0
- control_plane_api/app/lib/kubiya_client.py +235 -0
- control_plane_api/app/lib/litellm_pricing.py +166 -0
- control_plane_api/app/lib/planning_tools/__init__.py +22 -0
- control_plane_api/app/lib/planning_tools/agents.py +155 -0
- control_plane_api/app/lib/planning_tools/base.py +189 -0
- control_plane_api/app/lib/planning_tools/environments.py +214 -0
- control_plane_api/app/lib/planning_tools/resources.py +240 -0
- control_plane_api/app/lib/planning_tools/teams.py +198 -0
- control_plane_api/app/lib/policy_enforcer_client.py +939 -0
- control_plane_api/app/lib/redis_client.py +436 -0
- control_plane_api/app/lib/supabase.py +71 -0
- control_plane_api/app/lib/temporal_client.py +138 -0
- control_plane_api/app/lib/validation/__init__.py +20 -0
- control_plane_api/app/lib/validation/runtime_validation.py +287 -0
- control_plane_api/app/main.py +128 -0
- control_plane_api/app/middleware/__init__.py +8 -0
- control_plane_api/app/middleware/auth.py +513 -0
- control_plane_api/app/middleware/exception_handler.py +267 -0
- control_plane_api/app/middleware/rate_limiting.py +384 -0
- control_plane_api/app/middleware/request_id.py +202 -0
- control_plane_api/app/models/__init__.py +27 -0
- control_plane_api/app/models/agent.py +79 -0
- control_plane_api/app/models/analytics.py +206 -0
- control_plane_api/app/models/associations.py +81 -0
- control_plane_api/app/models/environment.py +63 -0
- control_plane_api/app/models/execution.py +93 -0
- control_plane_api/app/models/job.py +179 -0
- control_plane_api/app/models/llm_model.py +75 -0
- control_plane_api/app/models/presence.py +49 -0
- control_plane_api/app/models/project.py +47 -0
- control_plane_api/app/models/session.py +38 -0
- control_plane_api/app/models/team.py +66 -0
- control_plane_api/app/models/workflow.py +55 -0
- control_plane_api/app/policies/README.md +121 -0
- control_plane_api/app/policies/approved_users.rego +62 -0
- control_plane_api/app/policies/business_hours.rego +51 -0
- control_plane_api/app/policies/rate_limiting.rego +100 -0
- control_plane_api/app/policies/tool_restrictions.rego +86 -0
- control_plane_api/app/routers/__init__.py +4 -0
- control_plane_api/app/routers/agents.py +364 -0
- control_plane_api/app/routers/agents_v2.py +1260 -0
- control_plane_api/app/routers/analytics.py +1014 -0
- control_plane_api/app/routers/context_manager.py +562 -0
- control_plane_api/app/routers/environment_context.py +270 -0
- control_plane_api/app/routers/environments.py +715 -0
- control_plane_api/app/routers/execution_environment.py +517 -0
- control_plane_api/app/routers/executions.py +1911 -0
- control_plane_api/app/routers/health.py +92 -0
- control_plane_api/app/routers/health_v2.py +326 -0
- control_plane_api/app/routers/integrations.py +274 -0
- control_plane_api/app/routers/jobs.py +1344 -0
- control_plane_api/app/routers/models.py +82 -0
- control_plane_api/app/routers/models_v2.py +361 -0
- control_plane_api/app/routers/policies.py +639 -0
- control_plane_api/app/routers/presence.py +234 -0
- control_plane_api/app/routers/projects.py +902 -0
- control_plane_api/app/routers/runners.py +379 -0
- control_plane_api/app/routers/runtimes.py +172 -0
- control_plane_api/app/routers/secrets.py +155 -0
- control_plane_api/app/routers/skills.py +1001 -0
- control_plane_api/app/routers/skills_definitions.py +140 -0
- control_plane_api/app/routers/task_planning.py +1256 -0
- control_plane_api/app/routers/task_queues.py +654 -0
- control_plane_api/app/routers/team_context.py +270 -0
- control_plane_api/app/routers/teams.py +1400 -0
- control_plane_api/app/routers/worker_queues.py +1545 -0
- control_plane_api/app/routers/workers.py +935 -0
- control_plane_api/app/routers/workflows.py +204 -0
- control_plane_api/app/runtimes/__init__.py +6 -0
- control_plane_api/app/runtimes/validation.py +344 -0
- control_plane_api/app/schemas/job_schemas.py +295 -0
- control_plane_api/app/services/__init__.py +1 -0
- control_plane_api/app/services/agno_service.py +619 -0
- control_plane_api/app/services/litellm_service.py +190 -0
- control_plane_api/app/services/policy_service.py +525 -0
- control_plane_api/app/services/temporal_cloud_provisioning.py +150 -0
- control_plane_api/app/skills/__init__.py +44 -0
- control_plane_api/app/skills/base.py +229 -0
- control_plane_api/app/skills/business_intelligence.py +189 -0
- control_plane_api/app/skills/data_visualization.py +154 -0
- control_plane_api/app/skills/docker.py +104 -0
- control_plane_api/app/skills/file_generation.py +94 -0
- control_plane_api/app/skills/file_system.py +110 -0
- control_plane_api/app/skills/python.py +92 -0
- control_plane_api/app/skills/registry.py +65 -0
- control_plane_api/app/skills/shell.py +102 -0
- control_plane_api/app/skills/workflow_executor.py +469 -0
- control_plane_api/app/utils/workflow_executor.py +354 -0
- control_plane_api/app/workflows/__init__.py +11 -0
- control_plane_api/app/workflows/agent_execution.py +507 -0
- control_plane_api/app/workflows/agent_execution_with_skills.py +222 -0
- control_plane_api/app/workflows/namespace_provisioning.py +326 -0
- control_plane_api/app/workflows/team_execution.py +399 -0
- control_plane_api/scripts/seed_models.py +239 -0
- control_plane_api/worker/__init__.py +0 -0
- control_plane_api/worker/activities/__init__.py +0 -0
- control_plane_api/worker/activities/agent_activities.py +1241 -0
- control_plane_api/worker/activities/approval_activities.py +234 -0
- control_plane_api/worker/activities/runtime_activities.py +388 -0
- control_plane_api/worker/activities/skill_activities.py +267 -0
- control_plane_api/worker/activities/team_activities.py +1217 -0
- control_plane_api/worker/config/__init__.py +31 -0
- control_plane_api/worker/config/worker_config.py +275 -0
- control_plane_api/worker/control_plane_client.py +529 -0
- control_plane_api/worker/examples/analytics_integration_example.py +362 -0
- control_plane_api/worker/models/__init__.py +1 -0
- control_plane_api/worker/models/inputs.py +89 -0
- control_plane_api/worker/runtimes/__init__.py +31 -0
- control_plane_api/worker/runtimes/base.py +789 -0
- control_plane_api/worker/runtimes/claude_code_runtime.py +1443 -0
- control_plane_api/worker/runtimes/default_runtime.py +617 -0
- control_plane_api/worker/runtimes/factory.py +173 -0
- control_plane_api/worker/runtimes/validation.py +93 -0
- control_plane_api/worker/services/__init__.py +1 -0
- control_plane_api/worker/services/agent_executor.py +422 -0
- control_plane_api/worker/services/agent_executor_v2.py +383 -0
- control_plane_api/worker/services/analytics_collector.py +457 -0
- control_plane_api/worker/services/analytics_service.py +464 -0
- control_plane_api/worker/services/approval_tools.py +310 -0
- control_plane_api/worker/services/approval_tools_agno.py +207 -0
- control_plane_api/worker/services/cancellation_manager.py +177 -0
- control_plane_api/worker/services/data_visualization.py +827 -0
- control_plane_api/worker/services/jira_tools.py +257 -0
- control_plane_api/worker/services/runtime_analytics.py +328 -0
- control_plane_api/worker/services/session_service.py +194 -0
- control_plane_api/worker/services/skill_factory.py +175 -0
- control_plane_api/worker/services/team_executor.py +574 -0
- control_plane_api/worker/services/team_executor_v2.py +465 -0
- control_plane_api/worker/services/workflow_executor_tools.py +1418 -0
- control_plane_api/worker/tests/__init__.py +1 -0
- control_plane_api/worker/tests/e2e/__init__.py +0 -0
- control_plane_api/worker/tests/e2e/test_execution_flow.py +571 -0
- control_plane_api/worker/tests/integration/__init__.py +0 -0
- control_plane_api/worker/tests/integration/test_control_plane_integration.py +308 -0
- control_plane_api/worker/tests/unit/__init__.py +0 -0
- control_plane_api/worker/tests/unit/test_control_plane_client.py +401 -0
- control_plane_api/worker/utils/__init__.py +1 -0
- control_plane_api/worker/utils/chunk_batcher.py +305 -0
- control_plane_api/worker/utils/retry_utils.py +60 -0
- control_plane_api/worker/utils/streaming_utils.py +373 -0
- control_plane_api/worker/worker.py +753 -0
- control_plane_api/worker/workflows/__init__.py +0 -0
- control_plane_api/worker/workflows/agent_execution.py +589 -0
- control_plane_api/worker/workflows/team_execution.py +429 -0
- kubiya_control_plane_api-0.3.4.dist-info/METADATA +229 -0
- kubiya_control_plane_api-0.3.4.dist-info/RECORD +182 -0
- kubiya_control_plane_api-0.3.4.dist-info/entry_points.txt +2 -0
- kubiya_control_plane_api-0.3.4.dist-info/top_level.txt +1 -0
- kubiya_control_plane_api-0.1.0.dist-info/METADATA +0 -66
- kubiya_control_plane_api-0.1.0.dist-info/RECORD +0 -5
- kubiya_control_plane_api-0.1.0.dist-info/top_level.txt +0 -1
- {kubiya_control_plane_api-0.1.0.dist-info/licenses → control_plane_api}/LICENSE +0 -0
- {kubiya_control_plane_api-0.1.0.dist-info → kubiya_control_plane_api-0.3.4.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
control_plane_api/LICENSE,sha256=FFqYFOYGSCVW_0-D07iFSz857WKjzKsmeVQxw8hr-eQ,1064
|
|
2
|
+
control_plane_api/README.md,sha256=pu7T-3Xci_1t65RimjYlGrhBQempaJTugl6GGF35fIM,6460
|
|
3
|
+
control_plane_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
control_plane_api/__version__.py,sha256=oYLGMpySamd16KLiaBTfRyrAS7_oyp-TOEHmzmeumwg,22
|
|
5
|
+
control_plane_api/alembic.ini,sha256=za3YnZLcxHWvkLayyzjUIXhvIuolw7y6Lo2FS6KYo1A,4874
|
|
6
|
+
control_plane_api/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
|
|
7
|
+
control_plane_api/alembic/env.py,sha256=Ycdeh6-2xVbz6QPgwVju3SPwhTl_wFQNiiw03BnUgQg,2887
|
|
8
|
+
control_plane_api/alembic/script.py.mako,sha256=04kgeBtNMa4cCnG8CfQcKt6P6rnloIfj8wy0u_DBydM,704
|
|
9
|
+
control_plane_api/alembic/versions/1382bec74309_initial_migration_with_all_models.py,sha256=QA6kdpNg-l1O1PtDTO3JLqStGkRfOMsSt9UEZhv20EI,14437
|
|
10
|
+
control_plane_api/alembic/versions/1f54bc2a37e3_add_analytics_tables.py,sha256=iBMLZ4pMX4cQCC5MtaX9iYbOgWAKSHQ1OH_NMlcmkiQ,10356
|
|
11
|
+
control_plane_api/alembic/versions/2e4cb136dc10_rename_toolset_ids_to_skill_ids_in_teams.py,sha256=SSTywI7cqZPwNTB_PrUpNImuI93sPtQGIRfPZk_qw0s,860
|
|
12
|
+
control_plane_api/alembic/versions/31cd69a644ce_add_skill_templates_table.py,sha256=pOUtITfBzm_2CPNIWPzC8Ynd05dqBmdb_u5zCpOVNOk,573
|
|
13
|
+
control_plane_api/alembic/versions/89e127caa47d_add_jobs_and_job_executions_tables.py,sha256=c4o_y19BEXrI9iD_8-fc793jOtOS_PKzB4UEPwOd5sg,7782
|
|
14
|
+
control_plane_api/alembic/versions/add_llm_models_table.py,sha256=I64YzFaou7mNp8qcewdZOJ2wW8bOeF8vCelcaFzurYw,2237
|
|
15
|
+
control_plane_api/alembic/versions/b0e10697f212_add_runtime_column_to_teams_simple.py,sha256=MduK_X4tiqb_sAlhBLJ6_YHQOekaIQGAja67Pbx_PFI,1278
|
|
16
|
+
control_plane_api/alembic/versions/ce43b24b63bf_add_execution_trigger_source_and_fix_.py,sha256=KQUrlHtL-TED3oS2FAL2bjygEsiLP0iaVjIoUNm8TAM,5548
|
|
17
|
+
control_plane_api/alembic/versions/d4eaf16e3f8d_rename_toolsets_to_skills.py,sha256=BoRzXVFEiScwSCNInJcwT1Cd8RXQsx6kKrl1nHnuqlI,3661
|
|
18
|
+
control_plane_api/alembic/versions/efa2dc427da1_rename_metadata_to_custom_metadata.py,sha256=wYJQX9r1ofHZanFUVdTTtglfgMjakWmfcAHgqRvsclI,970
|
|
19
|
+
control_plane_api/alembic/versions/f973b431d1ce_add_workflow_executor_to_skill_types.py,sha256=1MGInvoHMUk4qxPqMcRFuaqQ3m1JxhCtr8egdqdHcic,1413
|
|
20
|
+
control_plane_api/api/index.py,sha256=b2wmc7IARJZJdeloFQb_Vy38SJ-6EVF-KPyrWnj_FN0,404
|
|
21
|
+
control_plane_api/app/__init__.py,sha256=PYHcoGwP2nZthJVTJcXsjP324_YkCZdRvLBf59VjD4A,205
|
|
22
|
+
control_plane_api/app/config.py,sha256=vCNeokRmkOMACj7KI0dIr8GyRDflQaQVv1HMpmKEpBQ,3598
|
|
23
|
+
control_plane_api/app/database.py,sha256=c67bw44qZ17qK6VLM4PzZAzNJJZ-SJjhFu89Q21Z8LQ,4586
|
|
24
|
+
control_plane_api/app/exceptions.py,sha256=YZNPvE1Zm91OMmHmElLUPm7_W2hbE27a31cr-xjIVf8,11231
|
|
25
|
+
control_plane_api/app/main.py,sha256=7EmF39w3MVw16fda-4A1qCI-16CGrOlihMEkuci66oI,6308
|
|
26
|
+
control_plane_api/app/activities/__init__.py,sha256=6KGEiGI134mOyeTcKsNYNz-B96kZSi5EYNhC1M1hCLI,452
|
|
27
|
+
control_plane_api/app/activities/agent_activities.py,sha256=IpOwJ3YuPgpQNS-P2CJ2-JtuQpJkn-O46AGnVAWuRPQ,12614
|
|
28
|
+
control_plane_api/app/activities/team_activities.py,sha256=WpoZEaZtw7sAZLLK2SUWeO7lEFufy2vvVysjmHItP0A,13956
|
|
29
|
+
control_plane_api/app/activities/temporal_cloud_activities.py,sha256=qz8DsK0q6sNHCoMFNkl6jPIPIvbVEE5J01L0jsLAU9g,18008
|
|
30
|
+
control_plane_api/app/config/__init__.py,sha256=tyhOMKGVQ8ydclv5B6yZ4YOdzSfO9phGLw4K0FQK1Ac,632
|
|
31
|
+
control_plane_api/app/config/api_config.py,sha256=u96piF9XW-bOmw9XXDChhg786ZqhsjAApjYA80N-s_s,10712
|
|
32
|
+
control_plane_api/app/config/model_pricing.py,sha256=X2w0YK4L7vmuI5jY-p7pfPo5RNw-oqWJ0g1qFxlcEp0,8435
|
|
33
|
+
control_plane_api/app/lib/__init__.py,sha256=VTNjd2nJbA-i0-5rd40kUOXt5HNzRNf17JGA60HnkOY,336
|
|
34
|
+
control_plane_api/app/lib/job_executor.py,sha256=nzRp5JmO34NGzvSBWCQq_LbcagrKR2nYL7rO_MlCU3s,10257
|
|
35
|
+
control_plane_api/app/lib/kubiya_client.py,sha256=L9AZNMFeS_mymVhzsVjdzDxHSgXg8jrYBH53Et4ugeM,7947
|
|
36
|
+
control_plane_api/app/lib/litellm_pricing.py,sha256=Mww5UOBwsPf3IN7Et98WF_sjKMOdJqY4iRyFwuI7BT4,5186
|
|
37
|
+
control_plane_api/app/lib/policy_enforcer_client.py,sha256=qHWNuSRZ7dZc1WH_icSNem0uCG7AfbALsXbGxFgmu04,33118
|
|
38
|
+
control_plane_api/app/lib/redis_client.py,sha256=4z3IiHnlcheFsPR2fFYpYutOjfhRE0iyHmYWcRxzymQ,14547
|
|
39
|
+
control_plane_api/app/lib/supabase.py,sha256=MsYnagD4C5-A_D86QeSlx5A1a6Hth00SCsJouaCbqaU,2001
|
|
40
|
+
control_plane_api/app/lib/temporal_client.py,sha256=v5aa3uq7jFFLi12YLqzOVzLYn3SkUDk425Xrp8BBxcw,4990
|
|
41
|
+
control_plane_api/app/lib/planning_tools/__init__.py,sha256=72ioSzIuc3r6Y34IjArgBXXcxfWC8lJQwJFYMIM42v4,847
|
|
42
|
+
control_plane_api/app/lib/planning_tools/agents.py,sha256=pNYVx-WIvfmjUPBD4E7waHDgsqHRXO0EY4n9sCt_jzU,5392
|
|
43
|
+
control_plane_api/app/lib/planning_tools/base.py,sha256=xEPsn_roRiLzn8K7IQEFb558sWstP13xsKT5FdCVoWc,5473
|
|
44
|
+
control_plane_api/app/lib/planning_tools/environments.py,sha256=rgGEMbs8uBpnW1-wYhr1XhXSPppF173B-vEXlmfMO_Y,7314
|
|
45
|
+
control_plane_api/app/lib/planning_tools/resources.py,sha256=kbCP966OgQHnAaIxYm6dO3qZcpn2uQ3nvrcDDKZ2jnY,8679
|
|
46
|
+
control_plane_api/app/lib/planning_tools/teams.py,sha256=yxfSznZtCHOBmoG5ruiU-f5soMuE7bAvp3FM4ko_TT8,6938
|
|
47
|
+
control_plane_api/app/lib/validation/__init__.py,sha256=w8pzPWTrYQ_8-DHiiyWUrK2utELnnVGxAMI-gmzLSyE,538
|
|
48
|
+
control_plane_api/app/lib/validation/runtime_validation.py,sha256=Katcm8dCr3uwXzdpl67g6auvIyYTn9qA9BYj4hqS1o4,9220
|
|
49
|
+
control_plane_api/app/middleware/__init__.py,sha256=E8pWTRnGWdTnj8Zg4GEg7FdNrrPq_65dnxeH-XwzR_Y,210
|
|
50
|
+
control_plane_api/app/middleware/auth.py,sha256=das20sfO-TTTJ0_eaOWDNpfrkSkEId-AfY21YT3N4so,17132
|
|
51
|
+
control_plane_api/app/middleware/exception_handler.py,sha256=KxXp7pzv0frmI6kuRzyOwfTmsJjrPkffQD-rfvlWMDU,7347
|
|
52
|
+
control_plane_api/app/middleware/rate_limiting.py,sha256=iucyv08mmU8o6cxQ7Xd0NyZb2eTGbr8fHQfXXK2UN9A,13027
|
|
53
|
+
control_plane_api/app/middleware/request_id.py,sha256=4M3ztQwd9YrcAZ0gefljAtDj1L-a45ft7jFDxOnTBwI,5979
|
|
54
|
+
control_plane_api/app/models/__init__.py,sha256=kdWIWSvotmFkjagE9KOLPdQmTQpgxHcM1hxOedQ1lr4,1404
|
|
55
|
+
control_plane_api/app/models/agent.py,sha256=PHdtSb6gKCYg-nfBFibN0dYgDSSGRe-peg5x9Dso6AY,2761
|
|
56
|
+
control_plane_api/app/models/analytics.py,sha256=jgPjvmpqv2mDqWXOVdSAcf6I73yhv5c5sl3fbrUqxYA,8798
|
|
57
|
+
control_plane_api/app/models/associations.py,sha256=GHbTtf594ceQ3pERZ6-nv3lPVvmzUMfsM12ibvEKbsE,3357
|
|
58
|
+
control_plane_api/app/models/environment.py,sha256=Z_lxwGBwnf-0uWXMIq5C38SwlG-oQYdP0W8H45OZyOY,2518
|
|
59
|
+
control_plane_api/app/models/execution.py,sha256=axjOI4BogRQSlqwuK1jsKJg5bGdfhDXAdvqOO6WJlyY,3663
|
|
60
|
+
control_plane_api/app/models/job.py,sha256=Pi1QcyQ32X13KHnJyrLaoIb6XPWiuWLSwdcpFS-Xk9I,7255
|
|
61
|
+
control_plane_api/app/models/llm_model.py,sha256=wig234yxFwjf5UbUB7K1Stgy3bYeBveLwyPyLe_nHPE,2829
|
|
62
|
+
control_plane_api/app/models/presence.py,sha256=wqmcuk1c3GJhrdGZKrW5UbjfQLHl3hLnTxDFxSn7oVE,1869
|
|
63
|
+
control_plane_api/app/models/project.py,sha256=Ut-XiMAEAy5FqGyuSr5o7GWKcqqgJNvzBaG8LRNzw2M,1903
|
|
64
|
+
control_plane_api/app/models/session.py,sha256=dMvf5U_wRZmpUJIQUqGo2jJqr4xV_Vs5dalzFNfwhW4,1508
|
|
65
|
+
control_plane_api/app/models/team.py,sha256=0zMlorpb6H8FCKIvz3fTnw9svZ6e6zLieFFE9KaQtB4,2453
|
|
66
|
+
control_plane_api/app/models/workflow.py,sha256=VcvScBJYpGbVbEhubU4eYGSuy4AuLV5SC8DzZW39C4U,1791
|
|
67
|
+
control_plane_api/app/policies/README.md,sha256=7-KiVs6yPz9awMXMhn0475cswNN6asr-romBfgtxEYM,3624
|
|
68
|
+
control_plane_api/app/policies/approved_users.rego,sha256=9YeKNMa6tM14NtZe5oedLYk1ZBVhbPQxC5fdsqSvvvw,1437
|
|
69
|
+
control_plane_api/app/policies/business_hours.rego,sha256=EybauQeRjhsTeUcZx_gmr_WK1rZN-vrhvjAZHE6V994,1290
|
|
70
|
+
control_plane_api/app/policies/rate_limiting.rego,sha256=02Bdl4f3ZhCfWdCzYt5W6uj2J3sIXf6RGt9XttVxRqo,2418
|
|
71
|
+
control_plane_api/app/policies/tool_restrictions.rego,sha256=UYFpU0ihtfFLqUsdhbcvrnnhybL06XJL_TC-PDPVugo,2031
|
|
72
|
+
control_plane_api/app/routers/__init__.py,sha256=zVMIlDupKgaMwudhBG5FXL4ALnuTYM-Iyef3EqwWBWg,163
|
|
73
|
+
control_plane_api/app/routers/agents.py,sha256=sfsACwoYcLyIFJ4OooF9g2_ECUnwf2o4v0RmmpRSSQ0,12299
|
|
74
|
+
control_plane_api/app/routers/agents_v2.py,sha256=c-_-FLmEU2by88qw0jTB4nmF3ZUXxIz9A4x8D1Xof3E,49319
|
|
75
|
+
control_plane_api/app/routers/analytics.py,sha256=eFPkYz8Xt2wYB9NMm-hEZHl_ysZnvnVhZxzF1leUEuM,41292
|
|
76
|
+
control_plane_api/app/routers/context_manager.py,sha256=DrwIeptjdTE-qQlFAdS-BH75e8cLddLX6DhIK8_rv50,20029
|
|
77
|
+
control_plane_api/app/routers/environment_context.py,sha256=LY2WWCLeDtiFBXnJHiFS_yUeQel022eL0KQ6ks0XdM8,8560
|
|
78
|
+
control_plane_api/app/routers/environments.py,sha256=n7EKjhKXjVoyOLOYM10klrPFsgRtOBjJS-EMdAoOx5c,24087
|
|
79
|
+
control_plane_api/app/routers/execution_environment.py,sha256=9sl_yHBlMRJ_MaGZI1DqjrW6yoF7w3h_PhuIzLYwCcg,19388
|
|
80
|
+
control_plane_api/app/routers/executions.py,sha256=sNGjGNao5gCQhirTllCM5VTR9lO2ddk00cJTvvb-ogo,79027
|
|
81
|
+
control_plane_api/app/routers/health.py,sha256=Tbmx5FkXsxD909eOaTQMLwDbnGQuZDg5gDYmaOCJOqY,2898
|
|
82
|
+
control_plane_api/app/routers/health_v2.py,sha256=bey6V54f9TqwN4S5JfSh5ZhM1BWWohYpD1KK7AQCO_4,10219
|
|
83
|
+
control_plane_api/app/routers/integrations.py,sha256=FpYQmPsCPyC0EAcF-Zpl2z35MGanp8U243DUPvu0Orc,10691
|
|
84
|
+
control_plane_api/app/routers/jobs.py,sha256=OhaFyZ93F6UCxy45948_KPrsopGmpdYVq_UPM-b4ZDY,44058
|
|
85
|
+
control_plane_api/app/routers/models.py,sha256=Isy4iHUhkGSJuBPCM-oz1nxW8jquDwN2CFeYPf25cDE,2272
|
|
86
|
+
control_plane_api/app/routers/models_v2.py,sha256=NZPfwAqSYfTCAKgFkNxH0w-eyx5EUr_uwf3LrA2pwHA,11505
|
|
87
|
+
control_plane_api/app/routers/policies.py,sha256=luLHpnuFzCblZ3_RXxiDRnmcQzQ4sBXNnbkYyh6bDsM,21994
|
|
88
|
+
control_plane_api/app/routers/presence.py,sha256=RoBCc_3pJ8KBb6y0c8y2yXZK4OpTQ-zW8HuC1q_o4C0,7112
|
|
89
|
+
control_plane_api/app/routers/projects.py,sha256=dwvZWExZpsSoqUbojHKda_omW3AOUjiT8y9bwxU4S04,29283
|
|
90
|
+
control_plane_api/app/routers/runners.py,sha256=VU22nLxU9JjAacmj5cJfEFkmGsG9SFPw8mGW2d7toKU,12836
|
|
91
|
+
control_plane_api/app/routers/runtimes.py,sha256=Vr28As-Yb7s_aaOHStLgwZTmkC1ewE24wQ54WOj2Z2I,7124
|
|
92
|
+
control_plane_api/app/routers/secrets.py,sha256=LIHCv2eFgAKjW0JFgV4fUfs7AGeAPB_U6qujiOsc27E,5704
|
|
93
|
+
control_plane_api/app/routers/skills.py,sha256=UTY51KpQZGVSqgcrrMJkOKg_5Ck-xlh6p20Htw3c0FM,35581
|
|
94
|
+
control_plane_api/app/routers/skills_definitions.py,sha256=wQHm9PFPgmUxFfWzh7Me1CkxWRYg97ozXF7hAQwbtLM,4320
|
|
95
|
+
control_plane_api/app/routers/task_planning.py,sha256=gWYXd0SkodjSpmdnJ2SVkXBhsxLVGJJe1gzBynI9RM8,53407
|
|
96
|
+
control_plane_api/app/routers/task_queues.py,sha256=2ey-pc5DczEgYJBOJzGoGHeYxYz8K90Zb1bXBduGuFA,20908
|
|
97
|
+
control_plane_api/app/routers/team_context.py,sha256=UkayhW2M8W9QMJAFv2fRhGB-ic-UjrsO6THx4w0j4a4,8008
|
|
98
|
+
control_plane_api/app/routers/teams.py,sha256=LiKK66jnq27OKiCWmqaRjren-k7DhN16-UPwX8-blK4,53126
|
|
99
|
+
control_plane_api/app/routers/worker_queues.py,sha256=ljW3uEESoOricx1dfX_fut5IRg5A1JVaJ-HqzdWvMtY,47239
|
|
100
|
+
control_plane_api/app/routers/workers.py,sha256=jdI658_j63nbXkocLkD4UUprw1Qp9DjgdqBrMDlCfBI,31989
|
|
101
|
+
control_plane_api/app/routers/workflows.py,sha256=gJ6va32bHyJu5sWzt9QCCTUfV-CsmBY6Uj-wE81_XSg,7063
|
|
102
|
+
control_plane_api/app/runtimes/__init__.py,sha256=kW6UBFLB-lkbCvFguS_03P6Jl_hFYPaG-0GzHGx-vDA,165
|
|
103
|
+
control_plane_api/app/runtimes/validation.py,sha256=7ie-omW_ZLv6zlBd-XqXj70awyL9sNTOlq1_jcSrfYM,11002
|
|
104
|
+
control_plane_api/app/schemas/job_schemas.py,sha256=jOH2QSYmlfdH9OT3cyzDPQ30StPjAaX9RhOtP1Qw9vI,10521
|
|
105
|
+
control_plane_api/app/services/__init__.py,sha256=Q-42j5UZfEVpOvRupJBFeljWlg-JJzvBjnwkMnDp2s8,11
|
|
106
|
+
control_plane_api/app/services/agno_service.py,sha256=IjU4btwmrsX3_j6mQlFbfyS7xUkZs9gNLs_3tI3atvc,24582
|
|
107
|
+
control_plane_api/app/services/litellm_service.py,sha256=qKvD-p1af16qVow0ftxVwDri954qu8aP4wCXPciPR_Q,6673
|
|
108
|
+
control_plane_api/app/services/policy_service.py,sha256=1C2F4xUOQaPD1VrlcKV3SlGaMPjoXLb45fzd_nmc9dw,16590
|
|
109
|
+
control_plane_api/app/services/temporal_cloud_provisioning.py,sha256=8whV-LbfoP5sjewXYL96nnU_gJsmzAPhiL83I8GHD1E,5254
|
|
110
|
+
control_plane_api/app/skills/__init__.py,sha256=Mi65CdPOaSM2fSsw5MJw-DsEv6NrimVjJ3ogbcT4HUo,1322
|
|
111
|
+
control_plane_api/app/skills/base.py,sha256=TjzjOpCVOgOnRNa0etZ9QmkKDW4Edtdubp8DPvvz6FY,7306
|
|
112
|
+
control_plane_api/app/skills/business_intelligence.py,sha256=23BAu-ZqFB6o1ri68EL9pM2s-btyJFXyWgCJ-dqXO7U,7293
|
|
113
|
+
control_plane_api/app/skills/data_visualization.py,sha256=cAhPq2QKECBxjl5skLqQAEauQboMwqW55Ws4OgQvdew,6090
|
|
114
|
+
control_plane_api/app/skills/docker.py,sha256=70JDf4gExfK12tTL1ga-AvV4XmM8vbgepJpZoOw_WpY,3707
|
|
115
|
+
control_plane_api/app/skills/file_generation.py,sha256=woqJ0hzjyfKrpNmd9v72rCbX-UHLqMqLGF_lyEnwjXQ,3262
|
|
116
|
+
control_plane_api/app/skills/file_system.py,sha256=2fGcE0Xflj7-XysfdkQ36n4l9Pr9sdLwjC1n-sk0Za4,3789
|
|
117
|
+
control_plane_api/app/skills/python.py,sha256=FJqIznS7GvT4BzBQlomAuMvoBywdd3wcLaRGxugH9G0,2904
|
|
118
|
+
control_plane_api/app/skills/registry.py,sha256=a1hSf4RUDIFHOquHEFKdkvrSVWkhduxUms_3PYmkV80,1906
|
|
119
|
+
control_plane_api/app/skills/shell.py,sha256=CqgkE3FTn7QMwdY5Fl_gZCSEbyLiR5Mh5n0SUhlufpY,3490
|
|
120
|
+
control_plane_api/app/skills/workflow_executor.py,sha256=LflnyDH821QnVlrKc2434HdPKpaUtRjVjdXLxehEZc8,18606
|
|
121
|
+
control_plane_api/app/utils/workflow_executor.py,sha256=1HfJlqQj3E8D0yg4AWurWHev3PQdVVdnKHElxG2b90I,13076
|
|
122
|
+
control_plane_api/app/workflows/__init__.py,sha256=TDBMCwoQxJBkHlDqBeajK_c0nT5CtGobk-2ZJqsRrYM,369
|
|
123
|
+
control_plane_api/app/workflows/agent_execution.py,sha256=kYJBOjsH2fnwSJ894KWFfU-SvKL-9z7kBv13rpt6hLI,21083
|
|
124
|
+
control_plane_api/app/workflows/agent_execution_with_skills.py,sha256=KUTdzMiqo58u3Y-hzBdZFlrAhde46cgAjNhNnLni5JM,6993
|
|
125
|
+
control_plane_api/app/workflows/namespace_provisioning.py,sha256=Pg76q9wVHhMxKwe-JUgfhZno_en3HWscg2StNhLKUWA,11756
|
|
126
|
+
control_plane_api/app/workflows/team_execution.py,sha256=CPqp4uvPonknL9DaITib2NMVQayvaN84pwjAJBt2j0M,15535
|
|
127
|
+
control_plane_api/scripts/seed_models.py,sha256=223klpeT44p6kYr02IK4sBJIEdq8UcCWUA1Y14a6T4g,7230
|
|
128
|
+
control_plane_api/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
control_plane_api/worker/control_plane_client.py,sha256=vLLefwVUs9-XSfviz1ade3Lg_VF0on3O8pHmPdi1Yyk,16775
|
|
130
|
+
control_plane_api/worker/worker.py,sha256=xYUxVGEFkeEHHpUmBmJL4c36Rs686b4nmxX4gaGd23M,24650
|
|
131
|
+
control_plane_api/worker/activities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
+
control_plane_api/worker/activities/agent_activities.py,sha256=55XrvDpsngTcNlBEpJM6sOUAtl4Wh4v7P0ihhHU3dHs,49636
|
|
133
|
+
control_plane_api/worker/activities/approval_activities.py,sha256=S-vZAcA-S7SU3R_Wbnlv9rnQHCLyYQ_WnZqp5qrm4Lw,7594
|
|
134
|
+
control_plane_api/worker/activities/runtime_activities.py,sha256=KS-2a72MpvMpm8wwYTThMD0FANWLzfk_bY_9zbEzk8s,16910
|
|
135
|
+
control_plane_api/worker/activities/skill_activities.py,sha256=oI2kdVtlcOge6KaYp-ojDLEqHFK5BoX6GLJMzPM3EW0,7809
|
|
136
|
+
control_plane_api/worker/activities/team_activities.py,sha256=VT9zlfcuPX5cTisI-e2fLLkTlImfCOmtUl3K1q4hLJs,56673
|
|
137
|
+
control_plane_api/worker/config/__init__.py,sha256=I1jS03FoVu8JZzN9XD2UpDtbYNTuw7jxJbiqdKZjA9Q,558
|
|
138
|
+
control_plane_api/worker/config/worker_config.py,sha256=KulsOXRTL8hbys3HHTEpsmXzyGEdzLBnrsDFf5BmTCA,8096
|
|
139
|
+
control_plane_api/worker/examples/analytics_integration_example.py,sha256=OIAxeJr_wuXByFh8X3_7D_Ua3iVCDPlOO2teS2uVyzc,10574
|
|
140
|
+
control_plane_api/worker/models/__init__.py,sha256=i3CRYtVMe0EfU5KBNuF9er7K_j-eZ5yNWAIfOaGpD9k,40
|
|
141
|
+
control_plane_api/worker/models/inputs.py,sha256=BE9XojWhrOXttKQ1xbiV6j3K4c3i6z8zw9iyaopcxw0,2414
|
|
142
|
+
control_plane_api/worker/runtimes/__init__.py,sha256=b6T7tvAtDWNQDdV9imgDtPFNa2x0rN29rMUYkdyQGAI,771
|
|
143
|
+
control_plane_api/worker/runtimes/base.py,sha256=tO84i1CeyqtF01DbEGZQtPQt_SZCmc7R9sck-PovVzM,23250
|
|
144
|
+
control_plane_api/worker/runtimes/claude_code_runtime.py,sha256=UI3UyPO9Q7g4F6dwq8QoqO3CBMQrz9LtzLNrN_uY32Y,65933
|
|
145
|
+
control_plane_api/worker/runtimes/default_runtime.py,sha256=VWPQcmMv993bQInQsWGDp1kWs0VtSGvLBoZPNCDrfbE,21671
|
|
146
|
+
control_plane_api/worker/runtimes/factory.py,sha256=nLU0JlEn0lktoYDOP80l7TAxIhjhZvmxGA5hTKg-wCk,5094
|
|
147
|
+
control_plane_api/worker/runtimes/validation.py,sha256=lS2-I16pCOoQZrdX8lmG70Kc0xy0KhV8Tq0xwZVGi-Q,3420
|
|
148
|
+
control_plane_api/worker/services/__init__.py,sha256=tWWJNVebyxTC5mhza5FoZ6rvyHK1WLZ7UJV5jAWXJG4,52
|
|
149
|
+
control_plane_api/worker/services/agent_executor.py,sha256=I0Fmz0DiGHuL5ziPoBKWXteBuL7Wq96H-0bsFeahUAE,18018
|
|
150
|
+
control_plane_api/worker/services/agent_executor_v2.py,sha256=xWqQT_qFTp5OgEWeJvXR3YYpad_wk_RWV21q_rALmKM,14754
|
|
151
|
+
control_plane_api/worker/services/analytics_collector.py,sha256=4V1D9q4RUrbCcWg3aTLUPgoZgkb3yRSk-DBSLaZvvN8,15837
|
|
152
|
+
control_plane_api/worker/services/analytics_service.py,sha256=0FAc_SWZj10zWrptsF66p-7mqvAG8wCy8dHAxP4PGo0,15805
|
|
153
|
+
control_plane_api/worker/services/approval_tools.py,sha256=lpn1OeoTIVn_KtM1bHo_jJ93ewg0Vv-OtO9IFqVzcH4,12500
|
|
154
|
+
control_plane_api/worker/services/approval_tools_agno.py,sha256=ZZRHLU-84W64B01TfVBL7NTID0I3Vz0LqjuY5HN_IUA,8183
|
|
155
|
+
control_plane_api/worker/services/cancellation_manager.py,sha256=9dtNSSBWLyCkWAMKam4I9sJAtYT2RWIlogbGKo1H-FQ,5530
|
|
156
|
+
control_plane_api/worker/services/data_visualization.py,sha256=4ViMpQQzEMKv-pkj6VrGP--nEXFxd4jIDqrGIe1uPA4,25721
|
|
157
|
+
control_plane_api/worker/services/jira_tools.py,sha256=W-YHyvWiVLxlGGGWNSn3hcg0_EctNgOH6YfSANe0WaM,7600
|
|
158
|
+
control_plane_api/worker/services/runtime_analytics.py,sha256=vxvrktl8pX_TJDDWSBW4ZbaEjYKpNj_pCRUYn4VoSZo,11399
|
|
159
|
+
control_plane_api/worker/services/session_service.py,sha256=QRpbZs70gY3x7M9Zz0IewaAK5MSCmI-n1FVa0WNKz-0,6089
|
|
160
|
+
control_plane_api/worker/services/skill_factory.py,sha256=hSsWIHGjAOkLNmp9dRkA-RWJy6McVLij8kY2QZcSHaM,6265
|
|
161
|
+
control_plane_api/worker/services/team_executor.py,sha256=XcMNT1xo6C9kY2Zp24-dP3HgtAj0y7qU2lou1MDNjQc,26404
|
|
162
|
+
control_plane_api/worker/services/team_executor_v2.py,sha256=zr9EUfal9NKS224r1KJbKenoMns4frAodmCtKCnorUc,17120
|
|
163
|
+
control_plane_api/worker/services/workflow_executor_tools.py,sha256=m8LwfKkBF4u86pfv4gXOMSbTJVjn9jQcHmgQXOTFls8,61843
|
|
164
|
+
control_plane_api/worker/tests/__init__.py,sha256=BxQjGO298hXPMcnN3937KqAXECeyQayOMyJNkTILTNk,34
|
|
165
|
+
control_plane_api/worker/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
+
control_plane_api/worker/tests/e2e/test_execution_flow.py,sha256=6Iw9Jiaeyjqlj4u4KLb249hife7jQbTdciNxq70KISQ,19972
|
|
167
|
+
control_plane_api/worker/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
|
+
control_plane_api/worker/tests/integration/test_control_plane_integration.py,sha256=lT3WU0l7H4Q2UdAP_Lf8uJPV1ew1qL55gm-ZtCiu35E,10099
|
|
169
|
+
control_plane_api/worker/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
|
+
control_plane_api/worker/tests/unit/test_control_plane_client.py,sha256=9L1LX_kidNNs0HN6kMLJJrn6ibd_R-ib-f7B_ZR2vhI,13678
|
|
171
|
+
control_plane_api/worker/utils/__init__.py,sha256=JvxQF-3gAnUJhw21Czoetc7ABssTjDyuQFugbN7rEME,36
|
|
172
|
+
control_plane_api/worker/utils/chunk_batcher.py,sha256=bjSpAfYXtWLV3iyinPtgxzKLaF4RktZAXMyXG8ta_Hg,9760
|
|
173
|
+
control_plane_api/worker/utils/retry_utils.py,sha256=SwZ-EBUcEwr25OWXhBNaUItT04wT6Iz-hDn0osATZJs,1962
|
|
174
|
+
control_plane_api/worker/utils/streaming_utils.py,sha256=5ba54KbNBOq36Ec11zGMoRDlhxYZ8R7PjFXAGwuqWfM,13839
|
|
175
|
+
control_plane_api/worker/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
+
control_plane_api/worker/workflows/agent_execution.py,sha256=ARWnU5BmVN-We012xhrhqsi3Ed85pFWa-T3QIu3AR6Y,25123
|
|
177
|
+
control_plane_api/worker/workflows/team_execution.py,sha256=KEFo8L7VdGnQWETsCzQGfKTbEGH0zirrHYRQkWdCi9Y,17221
|
|
178
|
+
kubiya_control_plane_api-0.3.4.dist-info/METADATA,sha256=mQYTNNgGlxgmtWZWVGKkyuSVUr_uC1tYe9rysyHLnwg,7108
|
|
179
|
+
kubiya_control_plane_api-0.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
180
|
+
kubiya_control_plane_api-0.3.4.dist-info/entry_points.txt,sha256=cFXlFhz-P53OHNAx5z-CLzRZlThkDTfpjPNg4xuEkTY,85
|
|
181
|
+
kubiya_control_plane_api-0.3.4.dist-info/top_level.txt,sha256=O508oQqAVBDsbQFGDcaHOrC66Redybxm_QZLzMzMuao,18
|
|
182
|
+
kubiya_control_plane_api-0.3.4.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
control_plane_api
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: kubiya-control-plane-api
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: Agent Control Plane API - Multi-tenant AI agent orchestration and management platform
|
|
5
|
-
Author-email: Kubiya <support@kubiya.ai>
|
|
6
|
-
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/kubiyabot/agent-control-plane
|
|
8
|
-
Project-URL: Documentation, https://github.com/kubiyabot/agent-control-plane/blob/main/README.md
|
|
9
|
-
Project-URL: Repository, https://github.com/kubiyabot/agent-control-plane
|
|
10
|
-
Project-URL: Issues, https://github.com/kubiyabot/agent-control-plane/issues
|
|
11
|
-
Keywords: ai,agents,orchestration,temporal,fastapi,multi-tenant,workflow,automation
|
|
12
|
-
Classifier: Development Status :: 4 - Beta
|
|
13
|
-
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
-
Classifier: Framework :: FastAPI
|
|
20
|
-
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
21
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
22
|
-
Requires-Python: <4.0.0,>=3.10
|
|
23
|
-
Description-Content-Type: text/markdown
|
|
24
|
-
License-File: LICENSE
|
|
25
|
-
Requires-Dist: fastapi<1.0.0,>=0.109.0
|
|
26
|
-
Requires-Dist: uvicorn[standard]<1.0.0,>=0.27.0
|
|
27
|
-
Requires-Dist: sqlalchemy<3.0.0,>=2.0.25
|
|
28
|
-
Requires-Dist: psycopg2-binary<3.0.0,>=2.9.9
|
|
29
|
-
Requires-Dist: pydantic<3.0.0,>=2.5.3
|
|
30
|
-
Requires-Dist: pydantic-settings<3.0.0,>=2.1.0
|
|
31
|
-
Requires-Dist: alembic<2.0.0,>=1.13.1
|
|
32
|
-
Requires-Dist: httpx<1.0.0,>=0.26.0
|
|
33
|
-
Requires-Dist: python-multipart<1.0.0,>=0.0.6
|
|
34
|
-
Requires-Dist: python-jose[cryptography]<4.0.0,>=3.3.0
|
|
35
|
-
Requires-Dist: PyJWT<3.0.0,>=2.8.0
|
|
36
|
-
Requires-Dist: passlib[bcrypt]<2.0.0,>=1.7.4
|
|
37
|
-
Requires-Dist: litellm<2.0.0,>=1.30.0
|
|
38
|
-
Requires-Dist: agno<3.0.0,>=2.0.10
|
|
39
|
-
Requires-Dist: supabase<3.0.0,>=2.3.0
|
|
40
|
-
Requires-Dist: temporalio<2.0.0,>=1.5.0
|
|
41
|
-
Requires-Dist: structlog<25.0.0,>=24.1.0
|
|
42
|
-
Requires-Dist: mangum<1.0.0,>=0.17.0
|
|
43
|
-
Requires-Dist: mcp<2.0.0,>=1.0.0
|
|
44
|
-
Requires-Dist: nest-asyncio<2.0.0,>=1.5.0
|
|
45
|
-
Provides-Extra: dev
|
|
46
|
-
Requires-Dist: pytest<9.0.0,>=7.4.0; extra == "dev"
|
|
47
|
-
Requires-Dist: pytest-asyncio<1.0.0,>=0.21.0; extra == "dev"
|
|
48
|
-
Requires-Dist: pytest-cov<6.0.0,>=4.1.0; extra == "dev"
|
|
49
|
-
Requires-Dist: pytest-mock<4.0.0,>=3.11.0; extra == "dev"
|
|
50
|
-
Requires-Dist: pytest-xdist<4.0.0,>=3.5.0; extra == "dev"
|
|
51
|
-
Requires-Dist: fakeredis<3.0.0,>=2.20.0; extra == "dev"
|
|
52
|
-
Requires-Dist: respx<1.0.0,>=0.20.0; extra == "dev"
|
|
53
|
-
Requires-Dist: black<25.0.0,>=23.0.0; extra == "dev"
|
|
54
|
-
Requires-Dist: ruff<1.0.0,>=0.1.0; extra == "dev"
|
|
55
|
-
Requires-Dist: mypy<2.0.0,>=1.0.0; extra == "dev"
|
|
56
|
-
Provides-Extra: test
|
|
57
|
-
Requires-Dist: pytest<9.0.0,>=7.4.0; extra == "test"
|
|
58
|
-
Requires-Dist: pytest-asyncio<1.0.0,>=0.21.0; extra == "test"
|
|
59
|
-
Requires-Dist: pytest-cov<6.0.0,>=4.1.0; extra == "test"
|
|
60
|
-
Requires-Dist: pytest-mock<4.0.0,>=3.11.0; extra == "test"
|
|
61
|
-
Requires-Dist: pytest-xdist<4.0.0,>=3.5.0; extra == "test"
|
|
62
|
-
Requires-Dist: fakeredis<3.0.0,>=2.20.0; extra == "test"
|
|
63
|
-
Requires-Dist: respx<1.0.0,>=0.20.0; extra == "test"
|
|
64
|
-
Provides-Extra: all
|
|
65
|
-
Requires-Dist: kubiya-control-plane-api[dev,test]; extra == "all"
|
|
66
|
-
Dynamic: license-file
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
kubiya_control_plane_api-0.1.0.dist-info/licenses/LICENSE,sha256=FFqYFOYGSCVW_0-D07iFSz857WKjzKsmeVQxw8hr-eQ,1064
|
|
2
|
-
kubiya_control_plane_api-0.1.0.dist-info/METADATA,sha256=kkUp1V3SloW0inWJcO9lO1WYAGXWj9_0I0zI5LcD9p0,3148
|
|
3
|
-
kubiya_control_plane_api-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
-
kubiya_control_plane_api-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
-
kubiya_control_plane_api-0.1.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
File without changes
|
|
File without changes
|