agentengine-sdk-python 0.6.4__tar.gz → 0.7.0__tar.gz

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.
Files changed (504) hide show
  1. agentengine_sdk_python-0.7.0/LICENSE +175 -0
  2. agentengine_sdk_python-0.7.0/MANIFEST.in +3 -0
  3. agentengine_sdk_python-0.7.0/PKG-INFO +181 -0
  4. agentengine_sdk_python-0.7.0/README.md +84 -0
  5. agentengine_sdk_python-0.7.0/agentengine_sdk_python.egg-info/PKG-INFO +181 -0
  6. agentengine_sdk_python-0.7.0/agentengine_sdk_python.egg-info/SOURCES.txt +494 -0
  7. agentengine_sdk_python-0.7.0/agentengine_sdk_python.egg-info/entry_points.txt +3 -0
  8. agentengine_sdk_python-0.7.0/agentengine_sdk_python.egg-info/requires.txt +86 -0
  9. agentengine_sdk_python-0.7.0/agentengine_sdk_python.egg-info/top_level.txt +2 -0
  10. agentengine_sdk_python-0.7.0/ksadk/__init__.py +13 -0
  11. agentengine_sdk_python-0.7.0/ksadk/__main__.py +4 -0
  12. agentengine_sdk_python-0.7.0/ksadk/a2a/__init__.py +15 -0
  13. agentengine_sdk_python-0.7.0/ksadk/a2a/card_builder.py +64 -0
  14. agentengine_sdk_python-0.7.0/ksadk/a2a/client.py +309 -0
  15. agentengine_sdk_python-0.7.0/ksadk/a2a/executor.py +201 -0
  16. agentengine_sdk_python-0.7.0/ksadk/a2a/server.py +79 -0
  17. agentengine_sdk_python-0.7.0/ksadk/agents/__init__.py +20 -0
  18. agentengine_sdk_python-0.7.0/ksadk/agents/base.py +370 -0
  19. agentengine_sdk_python-0.7.0/ksadk/agents/context.py +38 -0
  20. agentengine_sdk_python-0.7.0/ksadk/agents/event.py +35 -0
  21. agentengine_sdk_python-0.7.0/ksadk/agents/loop_agent.py +71 -0
  22. agentengine_sdk_python-0.7.0/ksadk/agents/parallel_agent.py +109 -0
  23. agentengine_sdk_python-0.7.0/ksadk/agents/runner_adapter.py +24 -0
  24. agentengine_sdk_python-0.7.0/ksadk/agents/sequential_agent.py +34 -0
  25. agentengine_sdk_python-0.7.0/ksadk/api/__init__.py +3 -0
  26. agentengine_sdk_python-0.7.0/ksadk/api/client.py +2246 -0
  27. agentengine_sdk_python-0.7.0/ksadk/builders/__init__.py +20 -0
  28. agentengine_sdk_python-0.7.0/ksadk/builders/base.py +66 -0
  29. agentengine_sdk_python-0.7.0/ksadk/builders/code_builder.py +1990 -0
  30. agentengine_sdk_python-0.7.0/ksadk/builders/container_builder.py +786 -0
  31. agentengine_sdk_python-0.7.0/ksadk/builders/framework_requirements.py +59 -0
  32. agentengine_sdk_python-0.7.0/ksadk/builders/ks3_uploader.py +389 -0
  33. agentengine_sdk_python-0.7.0/ksadk/builders/mcp_builder.py +476 -0
  34. agentengine_sdk_python-0.7.0/ksadk/builders/requirements_utils.py +75 -0
  35. agentengine_sdk_python-0.7.0/ksadk/cli/__init__.py +531 -0
  36. agentengine_sdk_python-0.7.0/ksadk/cli/__main__.py +4 -0
  37. agentengine_sdk_python-0.7.0/ksadk/cli/agent_ref.py +204 -0
  38. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_a2a.py +167 -0
  39. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_agent.py +201 -0
  40. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_build.py +270 -0
  41. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_completion.py +304 -0
  42. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_config.py +758 -0
  43. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_create.py +2304 -0
  44. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_dashboard.py +900 -0
  45. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_deploy.py +704 -0
  46. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_destroy.py +345 -0
  47. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_files.py +1227 -0
  48. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_hermes.py +1263 -0
  49. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_invoke.py +1503 -0
  50. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_launch.py +564 -0
  51. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_mcp.py +1179 -0
  52. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_model.py +302 -0
  53. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_openclaw.py +3922 -0
  54. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_run.py +239 -0
  55. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_status.py +588 -0
  56. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_version.py +522 -0
  57. agentengine_sdk_python-0.7.0/ksadk/cli/cmd_web.py +288 -0
  58. agentengine_sdk_python-0.7.0/ksadk/cli/deploy_utils.py +87 -0
  59. agentengine_sdk_python-0.7.0/ksadk/cli/dry_run.py +214 -0
  60. agentengine_sdk_python-0.7.0/ksadk/cli/env_options.py +82 -0
  61. agentengine_sdk_python-0.7.0/ksadk/cli/error_utils.py +525 -0
  62. agentengine_sdk_python-0.7.0/ksadk/cli/global_options.py +31 -0
  63. agentengine_sdk_python-0.7.0/ksadk/cli/local_runtime.py +97 -0
  64. agentengine_sdk_python-0.7.0/ksadk/cli/model_catalog.py +136 -0
  65. agentengine_sdk_python-0.7.0/ksadk/cli/network_options.py +412 -0
  66. agentengine_sdk_python-0.7.0/ksadk/cli/resource_common.py +621 -0
  67. agentengine_sdk_python-0.7.0/ksadk/cli/storage.py +84 -0
  68. agentengine_sdk_python-0.7.0/ksadk/cli/ui.py +431 -0
  69. agentengine_sdk_python-0.7.0/ksadk/cli/workflow_common.py +552 -0
  70. agentengine_sdk_python-0.7.0/ksadk/common/__init__.py +14 -0
  71. agentengine_sdk_python-0.7.0/ksadk/common/aicp_env.py +128 -0
  72. agentengine_sdk_python-0.7.0/ksadk/common/auth.py +190 -0
  73. agentengine_sdk_python-0.7.0/ksadk/common/constants.py +84 -0
  74. agentengine_sdk_python-0.7.0/ksadk/common/llm_utils.py +61 -0
  75. agentengine_sdk_python-0.7.0/ksadk/configs/__init__.py +61 -0
  76. agentengine_sdk_python-0.7.0/ksadk/configs/env_registry.py +343 -0
  77. agentengine_sdk_python-0.7.0/ksadk/configs/global_config.py +200 -0
  78. agentengine_sdk_python-0.7.0/ksadk/configs/settings.py +706 -0
  79. agentengine_sdk_python-0.7.0/ksadk/conversations/__init__.py +95 -0
  80. agentengine_sdk_python-0.7.0/ksadk/conversations/attachment_storage.py +379 -0
  81. agentengine_sdk_python-0.7.0/ksadk/conversations/attachments.py +774 -0
  82. agentengine_sdk_python-0.7.0/ksadk/conversations/compaction_pipeline.py +387 -0
  83. agentengine_sdk_python-0.7.0/ksadk/conversations/compaction_prompt.py +128 -0
  84. agentengine_sdk_python-0.7.0/ksadk/conversations/context.py +303 -0
  85. agentengine_sdk_python-0.7.0/ksadk/conversations/message_projection.py +269 -0
  86. agentengine_sdk_python-0.7.0/ksadk/conversations/model_context.py +370 -0
  87. agentengine_sdk_python-0.7.0/ksadk/conversations/model_options.py +136 -0
  88. agentengine_sdk_python-0.7.0/ksadk/conversations/normalize.py +446 -0
  89. agentengine_sdk_python-0.7.0/ksadk/conversations/reasoning_markup.py +91 -0
  90. agentengine_sdk_python-0.7.0/ksadk/conversations/run_kinds.py +61 -0
  91. agentengine_sdk_python-0.7.0/ksadk/conversations/run_status.py +53 -0
  92. agentengine_sdk_python-0.7.0/ksadk/conversations/runtime.py +5276 -0
  93. agentengine_sdk_python-0.7.0/ksadk/conversations/semantic_summary.py +359 -0
  94. agentengine_sdk_python-0.7.0/ksadk/conversations/session_title.py +254 -0
  95. agentengine_sdk_python-0.7.0/ksadk/deployment/__init__.py +83 -0
  96. agentengine_sdk_python-0.7.0/ksadk/deployment/agent_access.py +226 -0
  97. agentengine_sdk_python-0.7.0/ksadk/deployment/base.py +229 -0
  98. agentengine_sdk_python-0.7.0/ksadk/deployment/manager.py +332 -0
  99. agentengine_sdk_python-0.7.0/ksadk/deployment/providers/__init__.py +10 -0
  100. agentengine_sdk_python-0.7.0/ksadk/deployment/providers/serverless.py +1115 -0
  101. agentengine_sdk_python-0.7.0/ksadk/deployment/registry.py +120 -0
  102. agentengine_sdk_python-0.7.0/ksadk/deployment/state.py +78 -0
  103. agentengine_sdk_python-0.7.0/ksadk/deployment/ui_config.py +21 -0
  104. agentengine_sdk_python-0.7.0/ksadk/detection/__init__.py +7 -0
  105. agentengine_sdk_python-0.7.0/ksadk/detection/detector.py +431 -0
  106. agentengine_sdk_python-0.7.0/ksadk/detection/mcp_detector.py +250 -0
  107. agentengine_sdk_python-0.7.0/ksadk/hermes_terminal.py +467 -0
  108. agentengine_sdk_python-0.7.0/ksadk/identity/__init__.py +17 -0
  109. agentengine_sdk_python-0.7.0/ksadk/identity/resolver.py +385 -0
  110. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/__init__.py +62 -0
  111. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/adk_tool.py +47 -0
  112. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/client.py +297 -0
  113. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/langchain_tool.py +55 -0
  114. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/service.py +66 -0
  115. agentengine_sdk_python-0.7.0/ksadk/knowledge_base/tool.py +50 -0
  116. agentengine_sdk_python-0.7.0/ksadk/markdown.py +169 -0
  117. agentengine_sdk_python-0.7.0/ksadk/mcp_runtime/__init__.py +231 -0
  118. agentengine_sdk_python-0.7.0/ksadk/memory/__init__.py +57 -0
  119. agentengine_sdk_python-0.7.0/ksadk/memory/adk/__init__.py +51 -0
  120. agentengine_sdk_python-0.7.0/ksadk/memory/adk/backends/__init__.py +5 -0
  121. agentengine_sdk_python-0.7.0/ksadk/memory/adk/backends/base_ltm_backend.py +52 -0
  122. agentengine_sdk_python-0.7.0/ksadk/memory/adk/backends/http_ltm_backend.py +183 -0
  123. agentengine_sdk_python-0.7.0/ksadk/memory/adk/backends/inmemory_ltm_backend.py +96 -0
  124. agentengine_sdk_python-0.7.0/ksadk/memory/adk/backends/sdk_ltm_backend.py +456 -0
  125. agentengine_sdk_python-0.7.0/ksadk/memory/adk/long_term_memory.py +273 -0
  126. agentengine_sdk_python-0.7.0/ksadk/memory/adk/resilient_session_service.py +268 -0
  127. agentengine_sdk_python-0.7.0/ksadk/memory/adk/short_term_memory.py +304 -0
  128. agentengine_sdk_python-0.7.0/ksadk/memory/adk_tool.py +31 -0
  129. agentengine_sdk_python-0.7.0/ksadk/memory/backends/__init__.py +6 -0
  130. agentengine_sdk_python-0.7.0/ksadk/memory/backends/base.py +103 -0
  131. agentengine_sdk_python-0.7.0/ksadk/memory/backends/memory.py +112 -0
  132. agentengine_sdk_python-0.7.0/ksadk/memory/backends/redis.py +146 -0
  133. agentengine_sdk_python-0.7.0/ksadk/memory/langchain_tool.py +39 -0
  134. agentengine_sdk_python-0.7.0/ksadk/memory/ltm_backend_factory.py +24 -0
  135. agentengine_sdk_python-0.7.0/ksadk/memory/manager.py +215 -0
  136. agentengine_sdk_python-0.7.0/ksadk/memory/service.py +172 -0
  137. agentengine_sdk_python-0.7.0/ksadk/memory/tool.py +96 -0
  138. agentengine_sdk_python-0.7.0/ksadk/model_policy.py +223 -0
  139. agentengine_sdk_python-0.7.0/ksadk/openclaw_gateway.py +378 -0
  140. agentengine_sdk_python-0.7.0/ksadk/runners/__init__.py +8 -0
  141. agentengine_sdk_python-0.7.0/ksadk/runners/adk_runner.py +1994 -0
  142. agentengine_sdk_python-0.7.0/ksadk/runners/base_runner.py +305 -0
  143. agentengine_sdk_python-0.7.0/ksadk/runners/deepagents_runner.py +13 -0
  144. agentengine_sdk_python-0.7.0/ksadk/runners/factory.py +73 -0
  145. agentengine_sdk_python-0.7.0/ksadk/runners/langchain_runner.py +751 -0
  146. agentengine_sdk_python-0.7.0/ksadk/runners/langgraph_runner.py +985 -0
  147. agentengine_sdk_python-0.7.0/ksadk/runners/patch_langchain.py +187 -0
  148. agentengine_sdk_python-0.7.0/ksadk/runners/remote_runner.py +792 -0
  149. agentengine_sdk_python-0.7.0/ksadk/runners/usage_accumulator.py +38 -0
  150. agentengine_sdk_python-0.7.0/ksadk/runners/utils/__init__.py +19 -0
  151. agentengine_sdk_python-0.7.0/ksadk/runners/utils/langfuse.py +230 -0
  152. agentengine_sdk_python-0.7.0/ksadk/runners/utils/loader.py +62 -0
  153. agentengine_sdk_python-0.7.0/ksadk/runtime_context.py +166 -0
  154. agentengine_sdk_python-0.7.0/ksadk/runtime_state.py +25 -0
  155. agentengine_sdk_python-0.7.0/ksadk/sandbox/__init__.py +28 -0
  156. agentengine_sdk_python-0.7.0/ksadk/sandbox/backends/__init__.py +9 -0
  157. agentengine_sdk_python-0.7.0/ksadk/sandbox/backends/e2b.py +154 -0
  158. agentengine_sdk_python-0.7.0/ksadk/sandbox/backends/local_process.py +131 -0
  159. agentengine_sdk_python-0.7.0/ksadk/sandbox/base.py +101 -0
  160. agentengine_sdk_python-0.7.0/ksadk/sandbox/factory.py +53 -0
  161. agentengine_sdk_python-0.7.0/ksadk/sandbox/registry.py +187 -0
  162. agentengine_sdk_python-0.7.0/ksadk/server/__init__.py +7 -0
  163. agentengine_sdk_python-0.7.0/ksadk/server/api_models.py +73 -0
  164. agentengine_sdk_python-0.7.0/ksadk/server/app.py +3931 -0
  165. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ArtifactsPanel-D-SSn2ee.js +1 -0
  166. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/CodeBlock-P16VOLYi.js +9 -0
  167. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  168. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  169. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  170. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  171. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  172. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  173. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  174. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  175. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  176. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  177. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  178. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  179. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  180. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  181. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  182. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  183. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  184. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  185. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  186. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  187. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  188. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  189. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  190. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  191. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  192. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  193. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  194. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  195. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  196. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  197. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  198. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  199. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  200. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  201. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  202. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  203. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  204. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  205. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  206. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  207. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  208. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  209. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  210. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  211. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  212. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  213. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  214. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  215. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  216. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  217. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  218. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  219. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  220. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  221. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  222. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  223. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  224. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  225. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  226. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/MathMessageMarkdown-CdGiQWHR.js +8 -0
  227. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/MathMessageMarkdown-DeYh8QPr.css +1 -0
  228. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/MermaidBlock-IOcal8cm.js +303 -0
  229. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/NativeTerminalPanel-CHOd7Rch.css +1 -0
  230. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/NativeTerminalPanel-DGSDWsei.js +1 -0
  231. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/addon-fit-DthTIhi3.js +1 -0
  232. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/apl-CnwPGSsG.js +1 -0
  233. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/arc-BA13sHc9.js +1 -0
  234. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/architecture-7EHR7CIX-BvUlsA6l.js +1 -0
  235. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/architectureDiagram-3BPJPVTR-DzJzgVoL.js +36 -0
  236. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/asciiarmor-qTkVPQu6.js +1 -0
  237. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/asn1-Dr8qZg38.js +1 -0
  238. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/asterisk-Bja0s6e1.js +1 -0
  239. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/blockDiagram-GPEHLZMM-UTdVcZhn.js +132 -0
  240. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/brainfuck-D5EjA2JK.js +1 -0
  241. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/c4Diagram-AAUBKEIU-Dix0GD4m.js +10 -0
  242. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/channel-CTuydARX.js +1 -0
  243. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-2J33WTMH-C2JxuZ42.js +1 -0
  244. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-4BX2VUAB-Be57QPgD.js +1 -0
  245. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-55IACEB6-WjSuy4nv.js +1 -0
  246. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-727SXJPM-BOovP-b5.js +206 -0
  247. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-AQP2D5EJ-DOmZNmWj.js +231 -0
  248. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-FMBD7UC4-DzwlodkU.js +15 -0
  249. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-ND2GUHAM-DMqAikEU.js +1 -0
  250. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/chunk-QZHKN3VN-BnCydivS.js +1 -0
  251. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/classDiagram-4FO5ZUOK-BNHg45Be.js +1 -0
  252. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/classDiagram-v2-Q7XG4LA2-BNHg45Be.js +1 -0
  253. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/clike-DHH8Ad3s.js +1 -0
  254. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/clojure-BflJGmDX.js +1 -0
  255. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/cmake-CyVbuzPu.js +1 -0
  256. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/cobol-B_OZ4V-R.js +1 -0
  257. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/coffeescript-B2pKbFk8.js +1 -0
  258. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/commonlisp-CcllspGY.js +1 -0
  259. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/cose-bilkent-S5V4N54A-Zhy2GBnP.js +1 -0
  260. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/crystal-M5-qzICs.js +1 -0
  261. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/css-CYpP4FRV.js +1 -0
  262. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/cypher-p9eYesGn.js +1 -0
  263. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/cytoscape.esm-DelgaX4f.js +321 -0
  264. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/d-BhMjBjQP.js +1 -0
  265. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dagre-BM42HDAG-CbKrtIUz.js +4 -0
  266. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dagre-Bx709z4p.js +1 -0
  267. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/defaultLocale-C8Fc0cco.js +1 -0
  268. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diagram-2AECGRRQ-BRApgQRK.js +43 -0
  269. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diagram-5GNKFQAL-D0xbnDiK.js +10 -0
  270. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diagram-KO2AKTUF-CVugVI9L.js +3 -0
  271. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diagram-LMA3HP47-DozUGgee.js +24 -0
  272. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diagram-OG6HWLK6-ZOYsKlru.js +24 -0
  273. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/diff-ChtP43wD.js +1 -0
  274. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-2hInLS_J.js +9 -0
  275. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-8EEyGgDx.js +1 -0
  276. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-8_SfK1IP.js +1 -0
  277. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-B0NP_Z0z.js +23 -0
  278. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-BIJVDMuB.js +1 -0
  279. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-BmlMPsCc.js +2 -0
  280. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-BrCcQ47T.js +1 -0
  281. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-BssVmjIo.js +6 -0
  282. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-C3HIIaN5.js +1 -0
  283. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-CPBtqRTW.js +1 -0
  284. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-CkEKJFtk.js +1 -0
  285. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-D-JMdWPQ.js +1 -0
  286. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-D-xOD048.js +1 -0
  287. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-D57wnGWd.js +1 -0
  288. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DL_NKc_z.js +1 -0
  289. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DMezvBGJ.js +1 -0
  290. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DmFaq_Iy.js +1 -0
  291. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-Dp0k7bWI.js +1 -0
  292. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DpKtt4Bo.js +1 -0
  293. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DyOkZmze.js +11 -0
  294. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-DyWsb78Q.js +1 -0
  295. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dist-gX6GOLKq.js +1 -0
  296. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dockerfile-BLkNEvjs.js +1 -0
  297. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dtd-DTF72YNO.js +1 -0
  298. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/dylan-C6jEEEk-.js +1 -0
  299. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ebnf-D4c0_ac3.js +1 -0
  300. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ecl-BSZaIHnp.js +1 -0
  301. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/eiffel-BEjRio4Q.js +1 -0
  302. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/elm-Cshzl8qu.js +1 -0
  303. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/erDiagram-TEJ5UH35-Bk-9bgE5.js +85 -0
  304. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/erlang-DaB2Rkuy.js +1 -0
  305. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/eventmodeling-FCH6USID-DsAgWnlf.js +1 -0
  306. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/factor-D7LVTn2l.js +1 -0
  307. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/fcl-ClOhbFR7.js +1 -0
  308. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/flowDiagram-I6XJVG4X-Dn9kZVuZ.js +162 -0
  309. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/forth-Cezjo90N.js +1 -0
  310. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/fortran-Bt6PBEDR.js +1 -0
  311. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ganttDiagram-6RSMTGT7-BGxXlJqm.js +292 -0
  312. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/gas-BHEdbvp9.js +1 -0
  313. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/gherkin-oBAE_ms0.js +1 -0
  314. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/gitGraph-WXDBUCRP-BIao9Yjg.js +1 -0
  315. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/gitGraphDiagram-PVQCEYII-C7Q0X-wi.js +106 -0
  316. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/graphlib-B8gBHxth.js +1 -0
  317. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/groovy-BC3IOsC8.js +1 -0
  318. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/haskell-BRsoo5mP.js +1 -0
  319. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/haxe-DIz0ZZqd.js +1 -0
  320. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/http-CLVgA2GD.js +1 -0
  321. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/idl-BUZw3wgd.js +1 -0
  322. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/index-C00Lwg3L.js +165 -0
  323. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/index-DAURbCsP.css +1 -0
  324. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/info-J43DQDTF-CyipqGxU.js +1 -0
  325. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/infoDiagram-5YYISTIA-BO_CSqq5.js +2 -0
  326. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/init-D6jRqBbL.js +1 -0
  327. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ishikawaDiagram-YF4QCWOH-eYLPLd46.js +70 -0
  328. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/javascript-9Tg8ixDm.js +1 -0
  329. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/journeyDiagram-JHISSGLW-De9geSb0.js +139 -0
  330. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/julia-CQfgDRfP.js +1 -0
  331. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/kanban-definition-UN3LZRKU-Cs80kQto.js +89 -0
  332. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/katex-DSrCFD8n.js +265 -0
  333. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/linear-CN9sbKTF.js +1 -0
  334. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/livescript-BXxG0Yva.js +1 -0
  335. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/lua-CiA1ziua.js +1 -0
  336. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mathematica-u8YMmbU0.js +1 -0
  337. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mbox-BEMVcqjs.js +1 -0
  338. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mermaid-parser.core-DlgSBU8l.js +161 -0
  339. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mindmap-definition-RKZ34NQL-9afz7Oug.js +96 -0
  340. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mirc-C9zpzAZU.js +1 -0
  341. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mllike-B45xgp2S.js +1 -0
  342. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/modelica-CqHI_q-D.js +1 -0
  343. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mscgen-qgSLujhx.js +1 -0
  344. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/mumps-CW_TBmxz.js +1 -0
  345. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/nginx-BMaDbqW3.js +1 -0
  346. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/nsis-AQ_alPln.js +1 -0
  347. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ntriples-d28e9m0E.js +1 -0
  348. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/octave-D2Q8cUp1.js +1 -0
  349. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ordinal-hYBb2elL.js +1 -0
  350. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/oz-BwTct_5T.js +1 -0
  351. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/packet-YPE3B663-CGkyRxlg.js +1 -0
  352. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/pascal-Dp_KdFgX.js +1 -0
  353. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/perl-CdEHsPfU.js +1 -0
  354. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/pie-LRSECV5Y-M0uWAf4n.js +1 -0
  355. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/pieDiagram-4H26LBE5-DPv_VstN.js +30 -0
  356. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/pig-AF4Hwhju.js +1 -0
  357. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/powershell-CzG71I4L.js +1 -0
  358. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/properties-C357ku5U.js +1 -0
  359. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/protobuf-D1ij_kNL.js +1 -0
  360. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/pug-Bugr-47h.js +1 -0
  361. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/puppet-B4hC2X4m.js +1 -0
  362. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/python-BqYw9LYJ.js +1 -0
  363. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/q-B9NhS7L_.js +1 -0
  364. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/quadrantDiagram-W4KKPZXB-o77wZ1XK.js +7 -0
  365. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/r-DADKenSm.js +1 -0
  366. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/radar-GUYGQ44K-Bdbm24-x.js +1 -0
  367. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/requirementDiagram-4Y6WPE33-BYVw81VC.js +84 -0
  368. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/rpm-gpDK5sbt.js +1 -0
  369. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ruby-DsYpTuWg.js +1 -0
  370. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sankeyDiagram-5OEKKPKP-B7nZFMKT.js +40 -0
  371. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sas-C2OyD2Y6.js +1 -0
  372. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/scheme-CyDdOh7e.js +1 -0
  373. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sequenceDiagram-3UESZ5HK-BGRRrFw5.js +162 -0
  374. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/shell-Du5Qg9im.js +1 -0
  375. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sieve-BAxa3IjF.js +1 -0
  376. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/simple-mode-DRpGK0lJ.js +1 -0
  377. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/smalltalk-BLp5-jwC.js +1 -0
  378. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/solr-BBopId9w.js +1 -0
  379. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sparql-Dz-mlCAC.js +1 -0
  380. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/spreadsheet-CTIncYxj.js +1 -0
  381. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/sql-DcCJ9jop.js +1 -0
  382. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/stateDiagram-AJRCARHV-BUfHCoPs.js +1 -0
  383. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/stateDiagram-v2-BHNVJYJU-8xBN_gLM.js +1 -0
  384. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/stex-sDrdk2BW.js +1 -0
  385. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/stylus-DLLZ8dgm.js +1 -0
  386. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/swift-DKB6_1j6.js +1 -0
  387. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/tcl-BGfruO1u.js +1 -0
  388. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/textile-DWBqthVk.js +1 -0
  389. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/tiddlywiki-VlUiK86J.js +1 -0
  390. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/tiki-CxVlf5KZ.js +1 -0
  391. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/timeline-definition-PNZ67QCA-FbCTGrf9.js +120 -0
  392. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/toml-LvoKBwCs.js +1 -0
  393. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/treeView-BLDUP644-npMo0ak1.js +1 -0
  394. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/treemap-LRROVOQU-CHdzrrdo.js +1 -0
  395. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/troff-C2dAgh7P.js +1 -0
  396. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ttcn-BePYh-hG.js +1 -0
  397. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/ttcn-cfg-CY0aot7Q.js +1 -0
  398. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/turtle-BDLWE2cD.js +1 -0
  399. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/vb-BthdM_4N.js +1 -0
  400. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/vbscript-D9f6rSsU.js +1 -0
  401. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/velocity-CqftRsjg.js +1 -0
  402. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/vennDiagram-CIIHVFJN-DWgwtPsJ.js +34 -0
  403. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/verilog-D-x6ne0Z.js +1 -0
  404. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/vhdl-CMrOq2q1.js +1 -0
  405. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/wardley-L42UT6IY-BEQz7wyy.js +1 -0
  406. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/wardleyDiagram-YWT4CUSO-2x8G-tTM.js +78 -0
  407. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/webidl-D5jiJvOU.js +1 -0
  408. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/xquery-fj_R-kMw.js +1 -0
  409. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/xterm-DooSxjI5.js +36 -0
  410. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/xychartDiagram-2RQKCTM6-Drma3AYl.js +7 -0
  411. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/yacas-CXXgtw0p.js +1 -0
  412. agentengine_sdk_python-0.7.0/ksadk/server/static/assets/z80-CL1naaMV.js +1 -0
  413. agentengine_sdk_python-0.7.0/ksadk/server/static/favicon.svg +1 -0
  414. agentengine_sdk_python-0.7.0/ksadk/server/static/icons.svg +24 -0
  415. agentengine_sdk_python-0.7.0/ksadk/server/static/index.html +14 -0
  416. agentengine_sdk_python-0.7.0/ksadk/server/terminal_sessions.py +551 -0
  417. agentengine_sdk_python-0.7.0/ksadk/sessions/__init__.py +279 -0
  418. agentengine_sdk_python-0.7.0/ksadk/sessions/base.py +354 -0
  419. agentengine_sdk_python-0.7.0/ksadk/sessions/continuity.py +337 -0
  420. agentengine_sdk_python-0.7.0/ksadk/sessions/errors.py +7 -0
  421. agentengine_sdk_python-0.7.0/ksadk/sessions/in_memory.py +273 -0
  422. agentengine_sdk_python-0.7.0/ksadk/sessions/local_service.py +949 -0
  423. agentengine_sdk_python-0.7.0/ksadk/sessions/postgres_service.py +901 -0
  424. agentengine_sdk_python-0.7.0/ksadk/sessions/resilience.py +52 -0
  425. agentengine_sdk_python-0.7.0/ksadk/sessions/resilient.py +360 -0
  426. agentengine_sdk_python-0.7.0/ksadk/sessions/sqlite_service.py +13 -0
  427. agentengine_sdk_python-0.7.0/ksadk/skills/__init__.py +9 -0
  428. agentengine_sdk_python-0.7.0/ksadk/skills/loader.py +46 -0
  429. agentengine_sdk_python-0.7.0/ksadk/skills/models.py +120 -0
  430. agentengine_sdk_python-0.7.0/ksadk/skills/package_store.py +104 -0
  431. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/__init__.py +17 -0
  432. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/agent.py +183 -0
  433. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/artifacts.py +39 -0
  434. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/backends/__init__.py +1 -0
  435. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/backends/disabled.py +8 -0
  436. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/backends/e2b.py +168 -0
  437. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/backends/local.py +95 -0
  438. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/base.py +103 -0
  439. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/executor.py +219 -0
  440. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/factory.py +37 -0
  441. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/loader.py +131 -0
  442. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/registry.py +150 -0
  443. agentengine_sdk_python-0.7.0/ksadk/skills/runtime/request.py +67 -0
  444. agentengine_sdk_python-0.7.0/ksadk/skills/service_client.py +239 -0
  445. agentengine_sdk_python-0.7.0/ksadk/skills/service_env.py +58 -0
  446. agentengine_sdk_python-0.7.0/ksadk/skills/tool_defs.py +221 -0
  447. agentengine_sdk_python-0.7.0/ksadk/terminal_client.py +69 -0
  448. agentengine_sdk_python-0.7.0/ksadk/terminal_exec_policy.py +229 -0
  449. agentengine_sdk_python-0.7.0/ksadk/tools/__init__.py +17 -0
  450. agentengine_sdk_python-0.7.0/ksadk/tools/gateway.py +230 -0
  451. agentengine_sdk_python-0.7.0/ksadk/tools/result_budget.py +154 -0
  452. agentengine_sdk_python-0.7.0/ksadk/toolsets/__init__.py +854 -0
  453. agentengine_sdk_python-0.7.0/ksadk/toolsets/_langchain.py +11 -0
  454. agentengine_sdk_python-0.7.0/ksadk/toolsets/platform.py +93 -0
  455. agentengine_sdk_python-0.7.0/ksadk/toolsets/sandbox.py +310 -0
  456. agentengine_sdk_python-0.7.0/ksadk/toolsets/skills.py +217 -0
  457. agentengine_sdk_python-0.7.0/ksadk/toolsets/web.py +266 -0
  458. agentengine_sdk_python-0.7.0/ksadk/toolsets/workspace.py +917 -0
  459. agentengine_sdk_python-0.7.0/ksadk/toolsets/workspace_state.py +44 -0
  460. agentengine_sdk_python-0.7.0/ksadk/tracing/__init__.py +37 -0
  461. agentengine_sdk_python-0.7.0/ksadk/tracing/exporters/__init__.py +1 -0
  462. agentengine_sdk_python-0.7.0/ksadk/tracing/exporters/inmemory_exporter.py +116 -0
  463. agentengine_sdk_python-0.7.0/ksadk/tracing/exporters/langfuse_exporter.py +445 -0
  464. agentengine_sdk_python-0.7.0/ksadk/tracing/setup.py +892 -0
  465. agentengine_sdk_python-0.7.0/ksadk/tracing/span_utils.py +114 -0
  466. agentengine_sdk_python-0.7.0/ksadk/tui/__init__.py +27 -0
  467. agentengine_sdk_python-0.7.0/ksadk/tui/loop.py +1877 -0
  468. agentengine_sdk_python-0.7.0/ksadk/tui/stream_render.py +68 -0
  469. agentengine_sdk_python-0.7.0/ksadk/ui_config.py +168 -0
  470. agentengine_sdk_python-0.7.0/ksadk/version.py +4 -0
  471. agentengine_sdk_python-0.7.0/ksadk_runtime_common/__init__.py +20 -0
  472. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/__init__.py +29 -0
  473. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/manifest.py +79 -0
  474. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/providers/__init__.py +6 -0
  475. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/providers/lancedb.py +151 -0
  476. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/providers/mem0.py +74 -0
  477. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/registry.py +56 -0
  478. agentengine_sdk_python-0.7.0/ksadk_runtime_common/memory_backend/render.py +71 -0
  479. agentengine_sdk_python-0.7.0/ksadk_runtime_common/schemas/memory_backend_manifest.schema.json +148 -0
  480. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/__init__.py +29 -0
  481. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/bootstrap.py +56 -0
  482. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/constants.py +9 -0
  483. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/path_utils.py +71 -0
  484. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/preview.py +96 -0
  485. agentengine_sdk_python-0.7.0/ksadk_runtime_common/workspace_files/router.py +254 -0
  486. agentengine_sdk_python-0.7.0/pyproject.toml +172 -0
  487. agentengine_sdk_python-0.7.0/tests/test_check_approval_record.py +197 -0
  488. agentengine_sdk_python-0.7.0/tests/test_check_publication_state.py +265 -0
  489. agentengine_sdk_python-0.7.0/tests/test_config_env_registry.py +92 -0
  490. agentengine_sdk_python-0.7.0/tests/test_markdown_repair.py +84 -0
  491. agentengine_sdk_python-0.7.0/tests/test_open_source_audit.py +529 -0
  492. agentengine_sdk_python-0.7.0/tests/test_public_release_positioning.py +330 -0
  493. agentengine_sdk_python-0.7.0/tests/test_runtime_common_packaging.py +173 -0
  494. agentengine_sdk_python-0.7.0/tests/test_tracing_setup_otlp.py +731 -0
  495. agentengine_sdk_python-0.6.4/PKG-INFO +0 -48
  496. agentengine_sdk_python-0.6.4/README.md +0 -24
  497. agentengine_sdk_python-0.6.4/agentengine_sdk_python/__init__.py +0 -3
  498. agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/PKG-INFO +0 -48
  499. agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/SOURCES.txt +0 -8
  500. agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/requires.txt +0 -1
  501. agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/top_level.txt +0 -1
  502. agentengine_sdk_python-0.6.4/pyproject.toml +0 -38
  503. {agentengine_sdk_python-0.6.4 → agentengine_sdk_python-0.7.0}/agentengine_sdk_python.egg-info/dependency_links.txt +0 -0
  504. {agentengine_sdk_python-0.6.4 → agentengine_sdk_python-0.7.0}/setup.cfg +0 -0
@@ -0,0 +1,175 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including
48
+ the original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or
94
+ Derivative Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work, excluding
102
+ those notices that do not pertain to any part of the
103
+ Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding those notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE text file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and
116
+ do not modify the License. You may add Your own attribution
117
+ notices within Derivative Works that You distribute, alongside
118
+ or as an addendum to the NOTICE text from the Work, provided
119
+ that such additional attribution notices cannot be construed
120
+ as modifying the License.
121
+
122
+ You may add Your own copyright statement to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,3 @@
1
+ prune ksadk/server/web-ui
2
+ recursive-exclude ksadk/server/web-ui *
3
+ recursive-include ksadk_runtime_common/schemas *.json
@@ -0,0 +1,181 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentengine-sdk-python
3
+ Version: 0.7.0
4
+ Summary: Kingsoft Cloud Agent Engine SDK alias package for ksadk
5
+ Author-email: KsADK Team <xiayu@kingsoft.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/kingsoftcloud/ksadk-python
8
+ Project-URL: Repository, https://github.com/kingsoftcloud/ksadk-python
9
+ Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
10
+ Keywords: agent,langchain,langgraph,deepagents,adk,faas,kingsoft cloud,ai,llm
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: click>=8.0.0
25
+ Requires-Dist: pyyaml>=6.0.0
26
+ Requires-Dist: packaging>=23.0
27
+ Requires-Dist: python-dotenv>=1.0.0
28
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
29
+ Requires-Dist: jsonschema<5.0.0,>=4.0.0
30
+ Requires-Dist: questionary>=2.0.0
31
+ Requires-Dist: prompt_toolkit>=3.0.0
32
+ Requires-Dist: rich>=13.0.0
33
+ Requires-Dist: fastapi<1.0.0,>=0.100.0
34
+ Requires-Dist: uvicorn>=0.23.0
35
+ Requires-Dist: python-multipart<1.0.0,>=0.0.9
36
+ Requires-Dist: python-socks<3.0.0,>=2.7.1
37
+ Requires-Dist: httpx>=0.24.0
38
+ Requires-Dist: a2a-sdk>=0.3.22
39
+ Requires-Dist: httpx-sse>=0.4.0
40
+ Requires-Dist: sse-starlette>=2.1.0
41
+ Requires-Dist: requests>=2.28.0
42
+ Requires-Dist: requests-aws4auth>=1.2.0
43
+ Requires-Dist: kingsoftcloud-sdk-python>=1.5.8.94
44
+ Requires-Dist: cryptography>=44.0.0
45
+ Requires-Dist: websockets<16.0,>=12.0
46
+ Requires-Dist: qrcode>=7.4.0
47
+ Requires-Dist: asyncpg<1.0.0,>=0.30.0
48
+ Requires-Dist: greenlet>=1.0.0
49
+ Requires-Dist: ks3sdk>=1.15.0
50
+ Requires-Dist: pypdf>=6.0.0
51
+ Requires-Dist: beautifulsoup4>=4.12.0
52
+ Requires-Dist: rapidocr-onnxruntime>=1.2.0
53
+ Requires-Dist: langchain<2.0.0,>=1.3.0
54
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0
55
+ Requires-Dist: langchain-core<2.0.0,>=1.4.0
56
+ Requires-Dist: langgraph<1.3.0,>=1.2.0
57
+ Requires-Dist: opentelemetry-api==1.37.0
58
+ Requires-Dist: opentelemetry-sdk==1.37.0
59
+ Requires-Dist: opentelemetry-exporter-otlp==1.37.0
60
+ Provides-Extra: adk
61
+ Requires-Dist: google-adk<2.0.0,>=1.34.0; extra == "adk"
62
+ Requires-Dist: litellm>=1.0.0; (platform_system != "Windows" or python_version < "3.13") and extra == "adk"
63
+ Requires-Dist: json_repair>=0.25.0; extra == "adk"
64
+ Provides-Extra: langchain
65
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "langchain"
66
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "langchain"
67
+ Requires-Dist: langchain-core<2.0.0,>=1.4.0; extra == "langchain"
68
+ Provides-Extra: langgraph
69
+ Requires-Dist: langgraph<1.3.0,>=1.2.0; extra == "langgraph"
70
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "langgraph"
71
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "langgraph"
72
+ Requires-Dist: protobuf>=6.32.1; extra == "langgraph"
73
+ Provides-Extra: deepagents
74
+ Requires-Dist: deepagents<1.0.0,>=0.6.2; python_version >= "3.11" and extra == "deepagents"
75
+ Requires-Dist: langgraph<1.3.0,>=1.2.0; extra == "deepagents"
76
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "deepagents"
77
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "deepagents"
78
+ Provides-Extra: a2a
79
+ Requires-Dist: a2a-sdk[http-server]>=0.3.22; extra == "a2a"
80
+ Provides-Extra: tracing
81
+ Requires-Dist: openinference-instrumentation-langchain>=0.1.0; extra == "tracing"
82
+ Provides-Extra: kb
83
+ Provides-Extra: skills
84
+ Requires-Dist: e2b>=2.0.0; extra == "skills"
85
+ Provides-Extra: dev
86
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
87
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
88
+ Requires-Dist: fastmcp>=2.0.0; extra == "dev"
89
+ Requires-Dist: build>=1.0.0; extra == "dev"
90
+ Requires-Dist: twine>=5.0.0; extra == "dev"
91
+ Requires-Dist: black>=22.0.0; extra == "dev"
92
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
93
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
94
+ Provides-Extra: all
95
+ Requires-Dist: ksadk[a2a,adk,deepagents,dev,kb,langchain,langgraph,skills,tracing]; extra == "all"
96
+ Dynamic: license-file
97
+
98
+ <h1 align="center">Kingsoft Cloud Agent Development Kit</h1>
99
+
100
+ <p align="center"><strong>金山云智能体开发套件</strong></p>
101
+
102
+ <p align="center">
103
+ 构建、部署、调试、观测企业级 AI 智能体的一站式云原生框架。
104
+ 兼容 Google ADK、LangGraph、LangChain 与 DeepAgents,并支持一键拉起 OpenClaw 和 Hermes 运行时。
105
+ </p>
106
+
107
+ <p align="center"><a href="README.md">简体中文(默认)</a> · <a href="README.en.md">English</a></p>
108
+
109
+ <p align="center">
110
+ <a href="https://kingsoftcloud.github.io/ksadk-python/"><img alt="Docs" src="https://img.shields.io/badge/Docs-ksadk--python-2f6fdf?style=flat" /></a>
111
+ <a href="https://pypi.org/project/ksadk/"><img alt="PyPI" src="https://img.shields.io/pypi/v/ksadk?style=flat&color=2f6fdf" /></a>
112
+ <a href="https://zread.ai/kingsoftcloud/ksadk-python"><img alt="Ask Zread" src="https://img.shields.io/badge/Ask_Zread-_.svg?style=flat&color=00b0aa&labelColor=000000&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuOTYxNTYgMS42MDAxSDIuMjQxNTZDMS44ODgxIDEuNjAwMSAxLjYwMTU2IDEuODg2NjQgMS42MDE1NiAyLjI0MDFWNC45NjAxQzEuNjAxNTYgNS4zMTM1NiAxLjg4ODEgNS42MDAxIDIuMjQxNTYgNS42MDAxSDQuOTYxNTZDNS4zMTUwMiA1LjYwMDEgNS42MDE1NiA1LjMxMzU2IDUuNjAxNTYgNC45NjAxVjIuMjQwMUM1LjYwMTU2IDEuODg2NjQgNS4zMTUwMiAxLjYwMDEgNC45NjE1NiAxLjYwMDFaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00Ljk2MTU2IDEwLjM5OTlIMi4yNDE1NkMxLjg4ODEgMTAuMzk5OSAxLjYwMTU2IDEwLjY4NjQgMS42MDE1NiAxMS4wMzk5VjEzLjc1OTlDMS42MDE1NiAxNC4xMTM0IDEuODg4MSAxNC4zOTk5IDIuMjQxNTYgMTQuMzk5OUg0Ljk2MTU2QzUuMzE1MDIgMTQuMzk5OSA1LjYwMTU2IDE0LjExMzQgNS42MDE1NiAxMy43NTk5VjExLjAzOTlDNS42MDE1NiAxMC42ODY0IDUuMzE1MDIgMTAuMzk5OSA0Ljk2MTU2IDEwLjM5OTlaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik0xMy43NTg0IDEuNjAwMUgxMS4wMzg0QzEwLjY4NSAxLjYwMDEgMTAuMzk4NCAxLjg4NjY0IDEwLjM5ODQgMi4yNDAxVjQuOTYwMUMxMC4zOTg0IDUuMzEzNTYgMTAuNjg1IDUuNjAwMSAxMS4wMzg0IDUuNjAwMUgxMy43NTg0QzE0LjExMTkgNS42MDAxIDE0LjM5ODQgNS4zMTM1NiAxNC4zOTg0IDQuOTYwMVYyLjI0MDFDMTQuMzk4NCAxLjg4NjY0IDE0LjExMTkgMS42MDAxIDEzLjc1ODQgMS42MDAxWiIgZmlsbD0iI2ZmZiIvPgo8cGF0aCBkPSJNNCAxMkwxMiA0TDQgMTJaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00IDEyTDEyIDQiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K&logoColor=ffffff" /></a>
113
+ <a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache--2.0-blue?style=flat" /></a>
114
+ </p>
115
+
116
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero.png"><img alt="KsADK 真实 CLI 截图:agentengine -h" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero-wide.png" width="860" /></a></p>
117
+
118
+ ## 30 秒快速体验
119
+
120
+ ```bash
121
+ python -m venv .venv
122
+ source .venv/bin/activate
123
+ pip install -U "ksadk[all]"
124
+
125
+ agentengine init demo-agent -f langgraph
126
+ cd demo-agent
127
+ agentengine config set OPENAI_API_KEY=your-api-key OPENAI_MODEL_NAME=gpt-4o-mini
128
+ agentengine run -i
129
+ ```
130
+
131
+ 启动本地调试 Web UI:
132
+
133
+ ```bash
134
+ agentengine web . --no-open
135
+ ```
136
+
137
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png"><img alt="KsADK 真实 Web UI 调试截图" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png" width="860" /></a></p>
138
+
139
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif"><img alt="KsADK 真实本地 Web UI 演示" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif" width="860" /></a></p>
140
+
141
+ ## 为什么需要 KsADK
142
+
143
+ 大多数 Agent 框架解决“如何开发 Agent”。KsADK 解决“如何运行、调试、部署和观测 Agent”。
144
+
145
+ - 本地开发:`agentengine init`、`agentengine run`、`agentengine web`。
146
+ - 统一调试:浏览器 Web UI、streaming、附件、workspace 文件、工具调用和会话。
147
+ - 统一协议:本地 `/v1/responses` 与 `/v1/chat/completions`。
148
+ - 工具边界:Skill Runtime、Workspace、Sandbox、Memory、Knowledge。
149
+ - 工程链路:打包、部署、OpenClaw / Hermes 运行时、OpenTelemetry 可观测。
150
+
151
+ ## 架构
152
+
153
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png"><img alt="KsADK 智能体运行时平台架构" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png" width="860" /></a></p>
154
+
155
+ ## 文档与样例
156
+
157
+ - 文档:<https://kingsoftcloud.github.io/ksadk-python/>
158
+ - 快速开始:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/quickstart/>
159
+ - 为什么需要 KsADK:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/why-ksadk/>
160
+ - 架构:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/architecture/>
161
+ - 生态定位对比:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/comparison/>
162
+ - 可观测:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/observability-tracing/>
163
+ - 云端部署:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/cloud-deployment/>
164
+ - 样例仓库:<https://github.com/kingsoftcloud/ksadk-samples>
165
+
166
+ ## 相关项目
167
+
168
+ - KsADK 仓库:<https://github.com/kingsoftcloud/ksadk-python>
169
+ - Web UI 仓库:<https://github.com/kingsoftcloud/ksadk-web>
170
+ - Wiki:<https://zread.ai/kingsoftcloud/ksadk-python>
171
+ - PyPI:<https://pypi.org/project/ksadk/>
172
+
173
+ ## 参与贡献
174
+
175
+ 欢迎通过 issue、PR、样例和文档改进参与贡献。提交前建议运行:
176
+
177
+ ```bash
178
+ make public-preflight
179
+ ```
180
+
181
+ 开源协议:Apache-2.0。
@@ -0,0 +1,84 @@
1
+ <h1 align="center">Kingsoft Cloud Agent Development Kit</h1>
2
+
3
+ <p align="center"><strong>金山云智能体开发套件</strong></p>
4
+
5
+ <p align="center">
6
+ 构建、部署、调试、观测企业级 AI 智能体的一站式云原生框架。
7
+ 兼容 Google ADK、LangGraph、LangChain 与 DeepAgents,并支持一键拉起 OpenClaw 和 Hermes 运行时。
8
+ </p>
9
+
10
+ <p align="center"><a href="README.md">简体中文(默认)</a> · <a href="README.en.md">English</a></p>
11
+
12
+ <p align="center">
13
+ <a href="https://kingsoftcloud.github.io/ksadk-python/"><img alt="Docs" src="https://img.shields.io/badge/Docs-ksadk--python-2f6fdf?style=flat" /></a>
14
+ <a href="https://pypi.org/project/ksadk/"><img alt="PyPI" src="https://img.shields.io/pypi/v/ksadk?style=flat&color=2f6fdf" /></a>
15
+ <a href="https://zread.ai/kingsoftcloud/ksadk-python"><img alt="Ask Zread" src="https://img.shields.io/badge/Ask_Zread-_.svg?style=flat&color=00b0aa&labelColor=000000&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuOTYxNTYgMS42MDAxSDIuMjQxNTZDMS44ODgxIDEuNjAwMSAxLjYwMTU2IDEuODg2NjQgMS42MDE1NiAyLjI0MDFWNC45NjAxQzEuNjAxNTYgNS4zMTM1NiAxLjg4ODEgNS42MDAxIDIuMjQxNTYgNS42MDAxSDQuOTYxNTZDNS4zMTUwMiA1LjYwMDEgNS42MDE1NiA1LjMxMzU2IDUuNjAxNTYgNC45NjAxVjIuMjQwMUM1LjYwMTU2IDEuODg2NjQgNS4zMTUwMiAxLjYwMDEgNC45NjE1NiAxLjYwMDFaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00Ljk2MTU2IDEwLjM5OTlIMi4yNDE1NkMxLjg4ODEgMTAuMzk5OSAxLjYwMTU2IDEwLjY4NjQgMS42MDE1NiAxMS4wMzk5VjEzLjc1OTlDMS42MDE1NiAxNC4xMTM0IDEuODg4MSAxNC4zOTk5IDIuMjQxNTYgMTQuMzk5OUg0Ljk2MTU2QzUuMzE1MDIgMTQuMzk5OSA1LjYwMTU2IDE0LjExMzQgNS42MDE1NiAxMy43NTk5VjExLjAzOTlDNS42MDE1NiAxMC42ODY0IDUuMzE1MDIgMTAuMzk5OSA0Ljk2MTU2IDEwLjM5OTlaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik0xMy43NTg0IDEuNjAwMUgxMS4wMzg0QzEwLjY4NSAxLjYwMDEgMTAuMzk4NCAxLjg4NjY0IDEwLjM5ODQgMi4yNDAxVjQuOTYwMUMxMC4zOTg0IDUuMzEzNTYgMTAuNjg1IDUuNjAwMSAxMS4wMzg0IDUuNjAwMUgxMy43NTg0QzE0LjExMTkgNS42MDAxIDE0LjM5ODQgNS4zMTM1NiAxNC4zOTg0IDQuOTYwMVYyLjI0MDFDMTQuMzk4NCAxLjg4NjY0IDE0LjExMTkgMS42MDAxIDEzLjc1ODQgMS42MDAxWiIgZmlsbD0iI2ZmZiIvPgo8cGF0aCBkPSJNNCAxMkwxMiA0TDQgMTJaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00IDEyTDEyIDQiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K&logoColor=ffffff" /></a>
16
+ <a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache--2.0-blue?style=flat" /></a>
17
+ </p>
18
+
19
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero.png"><img alt="KsADK 真实 CLI 截图:agentengine -h" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero-wide.png" width="860" /></a></p>
20
+
21
+ ## 30 秒快速体验
22
+
23
+ ```bash
24
+ python -m venv .venv
25
+ source .venv/bin/activate
26
+ pip install -U "ksadk[all]"
27
+
28
+ agentengine init demo-agent -f langgraph
29
+ cd demo-agent
30
+ agentengine config set OPENAI_API_KEY=your-api-key OPENAI_MODEL_NAME=gpt-4o-mini
31
+ agentengine run -i
32
+ ```
33
+
34
+ 启动本地调试 Web UI:
35
+
36
+ ```bash
37
+ agentengine web . --no-open
38
+ ```
39
+
40
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png"><img alt="KsADK 真实 Web UI 调试截图" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png" width="860" /></a></p>
41
+
42
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif"><img alt="KsADK 真实本地 Web UI 演示" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif" width="860" /></a></p>
43
+
44
+ ## 为什么需要 KsADK
45
+
46
+ 大多数 Agent 框架解决“如何开发 Agent”。KsADK 解决“如何运行、调试、部署和观测 Agent”。
47
+
48
+ - 本地开发:`agentengine init`、`agentengine run`、`agentengine web`。
49
+ - 统一调试:浏览器 Web UI、streaming、附件、workspace 文件、工具调用和会话。
50
+ - 统一协议:本地 `/v1/responses` 与 `/v1/chat/completions`。
51
+ - 工具边界:Skill Runtime、Workspace、Sandbox、Memory、Knowledge。
52
+ - 工程链路:打包、部署、OpenClaw / Hermes 运行时、OpenTelemetry 可观测。
53
+
54
+ ## 架构
55
+
56
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png"><img alt="KsADK 智能体运行时平台架构" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png" width="860" /></a></p>
57
+
58
+ ## 文档与样例
59
+
60
+ - 文档:<https://kingsoftcloud.github.io/ksadk-python/>
61
+ - 快速开始:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/quickstart/>
62
+ - 为什么需要 KsADK:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/why-ksadk/>
63
+ - 架构:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/architecture/>
64
+ - 生态定位对比:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/comparison/>
65
+ - 可观测:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/observability-tracing/>
66
+ - 云端部署:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/cloud-deployment/>
67
+ - 样例仓库:<https://github.com/kingsoftcloud/ksadk-samples>
68
+
69
+ ## 相关项目
70
+
71
+ - KsADK 仓库:<https://github.com/kingsoftcloud/ksadk-python>
72
+ - Web UI 仓库:<https://github.com/kingsoftcloud/ksadk-web>
73
+ - Wiki:<https://zread.ai/kingsoftcloud/ksadk-python>
74
+ - PyPI:<https://pypi.org/project/ksadk/>
75
+
76
+ ## 参与贡献
77
+
78
+ 欢迎通过 issue、PR、样例和文档改进参与贡献。提交前建议运行:
79
+
80
+ ```bash
81
+ make public-preflight
82
+ ```
83
+
84
+ 开源协议:Apache-2.0。
@@ -0,0 +1,181 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentengine-sdk-python
3
+ Version: 0.7.0
4
+ Summary: Kingsoft Cloud Agent Engine SDK alias package for ksadk
5
+ Author-email: KsADK Team <xiayu@kingsoft.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/kingsoftcloud/ksadk-python
8
+ Project-URL: Repository, https://github.com/kingsoftcloud/ksadk-python
9
+ Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
10
+ Keywords: agent,langchain,langgraph,deepagents,adk,faas,kingsoft cloud,ai,llm
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: click>=8.0.0
25
+ Requires-Dist: pyyaml>=6.0.0
26
+ Requires-Dist: packaging>=23.0
27
+ Requires-Dist: python-dotenv>=1.0.0
28
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
29
+ Requires-Dist: jsonschema<5.0.0,>=4.0.0
30
+ Requires-Dist: questionary>=2.0.0
31
+ Requires-Dist: prompt_toolkit>=3.0.0
32
+ Requires-Dist: rich>=13.0.0
33
+ Requires-Dist: fastapi<1.0.0,>=0.100.0
34
+ Requires-Dist: uvicorn>=0.23.0
35
+ Requires-Dist: python-multipart<1.0.0,>=0.0.9
36
+ Requires-Dist: python-socks<3.0.0,>=2.7.1
37
+ Requires-Dist: httpx>=0.24.0
38
+ Requires-Dist: a2a-sdk>=0.3.22
39
+ Requires-Dist: httpx-sse>=0.4.0
40
+ Requires-Dist: sse-starlette>=2.1.0
41
+ Requires-Dist: requests>=2.28.0
42
+ Requires-Dist: requests-aws4auth>=1.2.0
43
+ Requires-Dist: kingsoftcloud-sdk-python>=1.5.8.94
44
+ Requires-Dist: cryptography>=44.0.0
45
+ Requires-Dist: websockets<16.0,>=12.0
46
+ Requires-Dist: qrcode>=7.4.0
47
+ Requires-Dist: asyncpg<1.0.0,>=0.30.0
48
+ Requires-Dist: greenlet>=1.0.0
49
+ Requires-Dist: ks3sdk>=1.15.0
50
+ Requires-Dist: pypdf>=6.0.0
51
+ Requires-Dist: beautifulsoup4>=4.12.0
52
+ Requires-Dist: rapidocr-onnxruntime>=1.2.0
53
+ Requires-Dist: langchain<2.0.0,>=1.3.0
54
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0
55
+ Requires-Dist: langchain-core<2.0.0,>=1.4.0
56
+ Requires-Dist: langgraph<1.3.0,>=1.2.0
57
+ Requires-Dist: opentelemetry-api==1.37.0
58
+ Requires-Dist: opentelemetry-sdk==1.37.0
59
+ Requires-Dist: opentelemetry-exporter-otlp==1.37.0
60
+ Provides-Extra: adk
61
+ Requires-Dist: google-adk<2.0.0,>=1.34.0; extra == "adk"
62
+ Requires-Dist: litellm>=1.0.0; (platform_system != "Windows" or python_version < "3.13") and extra == "adk"
63
+ Requires-Dist: json_repair>=0.25.0; extra == "adk"
64
+ Provides-Extra: langchain
65
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "langchain"
66
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "langchain"
67
+ Requires-Dist: langchain-core<2.0.0,>=1.4.0; extra == "langchain"
68
+ Provides-Extra: langgraph
69
+ Requires-Dist: langgraph<1.3.0,>=1.2.0; extra == "langgraph"
70
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "langgraph"
71
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "langgraph"
72
+ Requires-Dist: protobuf>=6.32.1; extra == "langgraph"
73
+ Provides-Extra: deepagents
74
+ Requires-Dist: deepagents<1.0.0,>=0.6.2; python_version >= "3.11" and extra == "deepagents"
75
+ Requires-Dist: langgraph<1.3.0,>=1.2.0; extra == "deepagents"
76
+ Requires-Dist: langchain<2.0.0,>=1.3.0; extra == "deepagents"
77
+ Requires-Dist: langchain-openai<2.0.0,>=1.2.0; extra == "deepagents"
78
+ Provides-Extra: a2a
79
+ Requires-Dist: a2a-sdk[http-server]>=0.3.22; extra == "a2a"
80
+ Provides-Extra: tracing
81
+ Requires-Dist: openinference-instrumentation-langchain>=0.1.0; extra == "tracing"
82
+ Provides-Extra: kb
83
+ Provides-Extra: skills
84
+ Requires-Dist: e2b>=2.0.0; extra == "skills"
85
+ Provides-Extra: dev
86
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
87
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
88
+ Requires-Dist: fastmcp>=2.0.0; extra == "dev"
89
+ Requires-Dist: build>=1.0.0; extra == "dev"
90
+ Requires-Dist: twine>=5.0.0; extra == "dev"
91
+ Requires-Dist: black>=22.0.0; extra == "dev"
92
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
93
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
94
+ Provides-Extra: all
95
+ Requires-Dist: ksadk[a2a,adk,deepagents,dev,kb,langchain,langgraph,skills,tracing]; extra == "all"
96
+ Dynamic: license-file
97
+
98
+ <h1 align="center">Kingsoft Cloud Agent Development Kit</h1>
99
+
100
+ <p align="center"><strong>金山云智能体开发套件</strong></p>
101
+
102
+ <p align="center">
103
+ 构建、部署、调试、观测企业级 AI 智能体的一站式云原生框架。
104
+ 兼容 Google ADK、LangGraph、LangChain 与 DeepAgents,并支持一键拉起 OpenClaw 和 Hermes 运行时。
105
+ </p>
106
+
107
+ <p align="center"><a href="README.md">简体中文(默认)</a> · <a href="README.en.md">English</a></p>
108
+
109
+ <p align="center">
110
+ <a href="https://kingsoftcloud.github.io/ksadk-python/"><img alt="Docs" src="https://img.shields.io/badge/Docs-ksadk--python-2f6fdf?style=flat" /></a>
111
+ <a href="https://pypi.org/project/ksadk/"><img alt="PyPI" src="https://img.shields.io/pypi/v/ksadk?style=flat&color=2f6fdf" /></a>
112
+ <a href="https://zread.ai/kingsoftcloud/ksadk-python"><img alt="Ask Zread" src="https://img.shields.io/badge/Ask_Zread-_.svg?style=flat&color=00b0aa&labelColor=000000&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuOTYxNTYgMS42MDAxSDIuMjQxNTZDMS44ODgxIDEuNjAwMSAxLjYwMTU2IDEuODg2NjQgMS42MDE1NiAyLjI0MDFWNC45NjAxQzEuNjAxNTYgNS4zMTM1NiAxLjg4ODEgNS42MDAxIDIuMjQxNTYgNS42MDAxSDQuOTYxNTZDNS4zMTUwMiA1LjYwMDEgNS42MDE1NiA1LjMxMzU2IDUuNjAxNTYgNC45NjAxVjIuMjQwMUM1LjYwMTU2IDEuODg2NjQgNS4zMTUwMiAxLjYwMDEgNC45NjE1NiAxLjYwMDFaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00Ljk2MTU2IDEwLjM5OTlIMi4yNDE1NkMxLjg4ODEgMTAuMzk5OSAxLjYwMTU2IDEwLjY4NjQgMS42MDE1NiAxMS4wMzk5VjEzLjc1OTlDMS42MDE1NiAxNC4xMTM0IDEuODg4MSAxNC4zOTk5IDIuMjQxNTYgMTQuMzk5OUg0Ljk2MTU2QzUuMzE1MDIgMTQuMzk5OSA1LjYwMTU2IDE0LjExMzQgNS42MDE1NiAxMy43NTk5VjExLjAzOTlDNS42MDE1NiAxMC42ODY0IDUuMzE1MDIgMTAuMzk5OSA0Ljk2MTU2IDEwLjM5OTlaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik0xMy43NTg0IDEuNjAwMUgxMS4wMzg0QzEwLjY4NSAxLjYwMDEgMTAuMzk4NCAxLjg4NjY0IDEwLjM5ODQgMi4yNDAxVjQuOTYwMUMxMC4zOTg0IDUuMzEzNTYgMTAuNjg1IDUuNjAwMSAxMS4wMzg0IDUuNjAwMUgxMy43NTg0QzE0LjExMTkgNS42MDAxIDE0LjM5ODQgNS4zMTM1NiAxNC4zOTg0IDQuOTYwMVYyLjI0MDFDMTQuMzk4NCAxLjg4NjY0IDE0LjExMTkgMS42MDAxIDEzLjc1ODQgMS42MDAxWiIgZmlsbD0iI2ZmZiIvPgo8cGF0aCBkPSJNNCAxMkwxMiA0TDQgMTJaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00IDEyTDEyIDQiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K&logoColor=ffffff" /></a>
113
+ <a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache--2.0-blue?style=flat" /></a>
114
+ </p>
115
+
116
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero.png"><img alt="KsADK 真实 CLI 截图:agentengine -h" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-platform-hero-wide.png" width="860" /></a></p>
117
+
118
+ ## 30 秒快速体验
119
+
120
+ ```bash
121
+ python -m venv .venv
122
+ source .venv/bin/activate
123
+ pip install -U "ksadk[all]"
124
+
125
+ agentengine init demo-agent -f langgraph
126
+ cd demo-agent
127
+ agentengine config set OPENAI_API_KEY=your-api-key OPENAI_MODEL_NAME=gpt-4o-mini
128
+ agentengine run -i
129
+ ```
130
+
131
+ 启动本地调试 Web UI:
132
+
133
+ ```bash
134
+ agentengine web . --no-open
135
+ ```
136
+
137
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png"><img alt="KsADK 真实 Web UI 调试截图" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-web-ui-screenshot.png" width="860" /></a></p>
138
+
139
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif"><img alt="KsADK 真实本地 Web UI 演示" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-local-debugging-demo.gif" width="860" /></a></p>
140
+
141
+ ## 为什么需要 KsADK
142
+
143
+ 大多数 Agent 框架解决“如何开发 Agent”。KsADK 解决“如何运行、调试、部署和观测 Agent”。
144
+
145
+ - 本地开发:`agentengine init`、`agentengine run`、`agentengine web`。
146
+ - 统一调试:浏览器 Web UI、streaming、附件、workspace 文件、工具调用和会话。
147
+ - 统一协议:本地 `/v1/responses` 与 `/v1/chat/completions`。
148
+ - 工具边界:Skill Runtime、Workspace、Sandbox、Memory、Knowledge。
149
+ - 工程链路:打包、部署、OpenClaw / Hermes 运行时、OpenTelemetry 可观测。
150
+
151
+ ## 架构
152
+
153
+ <p align="center"><a href="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png"><img alt="KsADK 智能体运行时平台架构" src="https://raw.githubusercontent.com/kingsoftcloud/ksadk-python/main/docs-site/public/assets/ksadk-runtime-architecture.png" width="860" /></a></p>
154
+
155
+ ## 文档与样例
156
+
157
+ - 文档:<https://kingsoftcloud.github.io/ksadk-python/>
158
+ - 快速开始:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/quickstart/>
159
+ - 为什么需要 KsADK:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/why-ksadk/>
160
+ - 架构:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/architecture/>
161
+ - 生态定位对比:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/getting-started/comparison/>
162
+ - 可观测:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/observability-tracing/>
163
+ - 云端部署:<https://kingsoftcloud.github.io/ksadk-python/cn/docs/framework/guides/cloud-deployment/>
164
+ - 样例仓库:<https://github.com/kingsoftcloud/ksadk-samples>
165
+
166
+ ## 相关项目
167
+
168
+ - KsADK 仓库:<https://github.com/kingsoftcloud/ksadk-python>
169
+ - Web UI 仓库:<https://github.com/kingsoftcloud/ksadk-web>
170
+ - Wiki:<https://zread.ai/kingsoftcloud/ksadk-python>
171
+ - PyPI:<https://pypi.org/project/ksadk/>
172
+
173
+ ## 参与贡献
174
+
175
+ 欢迎通过 issue、PR、样例和文档改进参与贡献。提交前建议运行:
176
+
177
+ ```bash
178
+ make public-preflight
179
+ ```
180
+
181
+ 开源协议:Apache-2.0。