agentscope-runtime 0.1.3__tar.gz → 0.1.4__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 (146) hide show
  1. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/PKG-INFO +7 -4
  2. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/README.md +4 -1
  3. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/pyproject.toml +3 -3
  4. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/context_manager.py +2 -0
  5. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/version.py +1 -1
  6. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/PKG-INFO +7 -4
  7. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/requires.txt +2 -2
  8. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/LICENSE +0 -0
  9. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/setup.cfg +0 -0
  10. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/setup.py +0 -0
  11. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/__init__.py +0 -0
  12. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/__init__.py +0 -0
  13. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/__init__.py +0 -0
  14. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/agentscope_agent/__init__.py +0 -0
  15. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/agentscope_agent/agent.py +0 -0
  16. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/agentscope_agent/hooks.py +0 -0
  17. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/agno_agent.py +0 -0
  18. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/autogen_agent.py +0 -0
  19. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/base_agent.py +0 -0
  20. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/langgraph_agent.py +0 -0
  21. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/agents/llm_agent.py +0 -0
  22. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/__init__.py +0 -0
  23. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/__init__.py +0 -0
  24. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +0 -0
  25. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py +0 -0
  26. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py +0 -0
  27. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +0 -0
  28. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/adapter/protocol_adapter.py +0 -0
  29. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/base.py +0 -0
  30. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/deployers/local_deployer.py +0 -0
  31. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/helpers/helper.py +0 -0
  32. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/llms/__init__.py +0 -0
  33. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/llms/base_llm.py +0 -0
  34. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/llms/qwen_llm.py +0 -0
  35. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/misc/__init__.py +0 -0
  36. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/runner.py +0 -0
  37. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/schemas/__init__.py +0 -0
  38. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/schemas/agent_schemas.py +0 -0
  39. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/schemas/context.py +0 -0
  40. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/__init__.py +0 -0
  41. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/base.py +0 -0
  42. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/environment_manager.py +0 -0
  43. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/manager.py +0 -0
  44. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/memory_service.py +0 -0
  45. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/rag_service.py +0 -0
  46. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/redis_memory_service.py +0 -0
  47. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/redis_session_history_service.py +0 -0
  48. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/reme_personal_memory_service.py +0 -0
  49. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/reme_task_memory_service.py +0 -0
  50. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/sandbox_service.py +0 -0
  51. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/services/session_history_service.py +0 -0
  52. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/tracing/__init__.py +0 -0
  53. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/tracing/base.py +0 -0
  54. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/tracing/local_logging_handler.py +0 -0
  55. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/tracing/tracing_metric.py +0 -0
  56. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/engine/tracing/wrapper.py +0 -0
  57. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/__init__.py +0 -0
  58. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/__init__.py +0 -0
  59. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/base/__init__.py +0 -0
  60. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/base/base_sandbox.py +0 -0
  61. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/base/box/__init__.py +0 -0
  62. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/browser/__init__.py +0 -0
  63. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/browser/box/__init__.py +0 -0
  64. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/browser/browser_sandbox.py +0 -0
  65. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/dummy/__init__.py +0 -0
  66. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py +0 -0
  67. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/filesystem/__init__.py +0 -0
  68. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/filesystem/box/__init__.py +0 -0
  69. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +0 -0
  70. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/sandbox.py +0 -0
  71. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/__init__.py +0 -0
  72. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/app.py +0 -0
  73. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/dependencies/__init__.py +0 -0
  74. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/dependencies/deps.py +0 -0
  75. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/__init__.py +0 -0
  76. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/generic.py +0 -0
  77. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/mcp.py +0 -0
  78. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +0 -0
  79. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py +0 -0
  80. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/shared/routers/workspace.py +0 -0
  81. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/__init__.py +0 -0
  82. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/base.py +0 -0
  83. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/env_service.py +0 -0
  84. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/environments/__init__.py +0 -0
  85. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py +0 -0
  86. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py +0 -0
  87. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py +0 -0
  88. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py +0 -0
  89. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/registry.py +0 -0
  90. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/src/trajectory.py +0 -0
  91. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/box/training_box/training_box.py +0 -0
  92. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/build.py +0 -0
  93. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/client/__init__.py +0 -0
  94. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/client/http_client.py +0 -0
  95. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/client/training_client.py +0 -0
  96. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/constant.py +0 -0
  97. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/custom/__init__.py +0 -0
  98. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/custom/custom_sandbox.py +0 -0
  99. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/custom/example.py +0 -0
  100. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/enums.py +0 -0
  101. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/__init__.py +0 -0
  102. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/__init__.py +0 -0
  103. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/base_mapping.py +0 -0
  104. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/base_queue.py +0 -0
  105. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/base_set.py +0 -0
  106. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/in_memory_mapping.py +0 -0
  107. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/in_memory_queue.py +0 -0
  108. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/in_memory_set.py +0 -0
  109. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/redis_mapping.py +0 -0
  110. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/redis_queue.py +0 -0
  111. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/collections/redis_set.py +0 -0
  112. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/container_clients/__init__.py +0 -0
  113. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/container_clients/base_client.py +0 -0
  114. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/container_clients/docker_client.py +0 -0
  115. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py +0 -0
  116. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/sandbox_manager.py +0 -0
  117. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/server/__init__.py +0 -0
  118. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/server/app.py +0 -0
  119. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/server/config.py +0 -0
  120. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/server/models.py +0 -0
  121. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/storage/__init__.py +0 -0
  122. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/storage/data_storage.py +0 -0
  123. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/storage/local_storage.py +0 -0
  124. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/manager/storage/oss_storage.py +0 -0
  125. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/mcp_server.py +0 -0
  126. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/model/__init__.py +0 -0
  127. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/model/api.py +0 -0
  128. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/model/container.py +0 -0
  129. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/model/manager_config.py +0 -0
  130. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/registry.py +0 -0
  131. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/__init__.py +0 -0
  132. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/base/__init__.py +0 -0
  133. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/base/tool.py +0 -0
  134. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/browser/__init__.py +0 -0
  135. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/browser/tool.py +0 -0
  136. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/filesystem/__init__.py +0 -0
  137. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/filesystem/tool.py +0 -0
  138. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/function_tool.py +0 -0
  139. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/mcp_tool.py +0 -0
  140. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/sandbox_tool.py +0 -0
  141. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/tool.py +0 -0
  142. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime/sandbox/tools/utils.py +0 -0
  143. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/SOURCES.txt +0 -0
  144. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/dependency_links.txt +0 -0
  145. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/entry_points.txt +0 -0
  146. {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.4}/src/agentscope_runtime.egg-info/top_level.txt +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentscope-runtime
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
7
7
  License-File: LICENSE
8
- Requires-Dist: mcp<1.10.0,>=1.8.0
8
+ Requires-Dist: mcp>=1.13
9
9
  Requires-Dist: fastapi>=0.104.0
10
10
  Requires-Dist: uvicorn[standard]>=0.24.0
11
11
  Requires-Dist: openai
@@ -55,7 +55,7 @@ Requires-Dist: llama-index-embeddings-langchain>=0.4.0; extra == "llamaindex-rag
55
55
  Requires-Dist: langchain-community>=0.3.27; extra == "llamaindex-rag"
56
56
  Requires-Dist: bs4>=0.0.2; extra == "llamaindex-rag"
57
57
  Provides-Extra: memory-ext
58
- Requires-Dist: reme-ai==0.1.8; python_full_version >= "3.12" and extra == "memory-ext"
58
+ Requires-Dist: reme-ai==0.1.9; python_full_version >= "3.12" and extra == "memory-ext"
59
59
  Dynamic: license-file
60
60
 
61
61
  <div align="center">
@@ -405,7 +405,7 @@ limitations under the License.
405
405
 
406
406
  ## Contributors ✨
407
407
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
408
- [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)
408
+ [![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-)
409
409
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
410
410
 
411
411
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -424,6 +424,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
424
424
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rankesterc"><img src="https://avatars.githubusercontent.com/u/114560457?v=4?s=100" width="100px;" alt="Ran Chen"/><br /><sub><b>Ran Chen</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rankesterc" title="Code">💻</a></td>
425
425
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jinliyl"><img src="https://avatars.githubusercontent.com/u/6469360?v=4?s=100" width="100px;" alt="jinliyl"/><br /><sub><b>jinliyl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Documentation">📖</a></td>
426
426
  </tr>
427
+ <tr>
428
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Osier-Yi"><img src="https://avatars.githubusercontent.com/u/8287381?v=4?s=100" width="100px;" alt="Osier-Yi"/><br /><sub><b>Osier-Yi</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Code">💻</a></td>
429
+ </tr>
427
430
  </tbody>
428
431
  <tfoot>
429
432
  <tr>
@@ -345,7 +345,7 @@ limitations under the License.
345
345
 
346
346
  ## Contributors ✨
347
347
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
348
- [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)
348
+ [![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-)
349
349
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
350
350
 
351
351
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -364,6 +364,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
364
364
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rankesterc"><img src="https://avatars.githubusercontent.com/u/114560457?v=4?s=100" width="100px;" alt="Ran Chen"/><br /><sub><b>Ran Chen</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rankesterc" title="Code">💻</a></td>
365
365
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jinliyl"><img src="https://avatars.githubusercontent.com/u/6469360?v=4?s=100" width="100px;" alt="jinliyl"/><br /><sub><b>jinliyl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Documentation">📖</a></td>
366
366
  </tr>
367
+ <tr>
368
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Osier-Yi"><img src="https://avatars.githubusercontent.com/u/8287381?v=4?s=100" width="100px;" alt="Osier-Yi"/><br /><sub><b>Osier-Yi</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Code">💻</a></td>
369
+ </tr>
367
370
  </tbody>
368
371
  <tfoot>
369
372
  <tr>
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "agentscope-runtime"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "mcp>=1.8.0,<1.10.0",
8
+ "mcp>=1.13",
9
9
  "fastapi>=0.104.0",
10
10
  "uvicorn[standard]>=0.24.0",
11
11
  "openai",
@@ -85,5 +85,5 @@ llamaindex_rag=[
85
85
  "bs4>=0.0.2",
86
86
  ]
87
87
  memory-ext = [
88
- "reme-ai==0.1.8 ; python_full_version >= '3.12'",
88
+ "reme-ai==0.1.9 ; python_full_version >= '3.12'",
89
89
  ]
@@ -151,11 +151,13 @@ async def create_context_manager(
151
151
  memory_service: MemoryService = None,
152
152
  session_history_service: SessionHistoryService = None,
153
153
  rag_service: RAGService = None,
154
+ context_composer_cls=ContextComposer,
154
155
  ):
155
156
  manager = ContextManager(
156
157
  memory_service=memory_service,
157
158
  session_history_service=session_history_service,
158
159
  rag_service=rag_service,
160
+ context_composer_cls=context_composer_cls,
159
161
  )
160
162
 
161
163
  async with manager:
@@ -1,2 +1,2 @@
1
1
  # -*- coding: utf-8 -*-
2
- __version__ = "v0.1.3"
2
+ __version__ = "v0.1.4"
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentscope-runtime
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
7
7
  License-File: LICENSE
8
- Requires-Dist: mcp<1.10.0,>=1.8.0
8
+ Requires-Dist: mcp>=1.13
9
9
  Requires-Dist: fastapi>=0.104.0
10
10
  Requires-Dist: uvicorn[standard]>=0.24.0
11
11
  Requires-Dist: openai
@@ -55,7 +55,7 @@ Requires-Dist: llama-index-embeddings-langchain>=0.4.0; extra == "llamaindex-rag
55
55
  Requires-Dist: langchain-community>=0.3.27; extra == "llamaindex-rag"
56
56
  Requires-Dist: bs4>=0.0.2; extra == "llamaindex-rag"
57
57
  Provides-Extra: memory-ext
58
- Requires-Dist: reme-ai==0.1.8; python_full_version >= "3.12" and extra == "memory-ext"
58
+ Requires-Dist: reme-ai==0.1.9; python_full_version >= "3.12" and extra == "memory-ext"
59
59
  Dynamic: license-file
60
60
 
61
61
  <div align="center">
@@ -405,7 +405,7 @@ limitations under the License.
405
405
 
406
406
  ## Contributors ✨
407
407
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
408
- [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)
408
+ [![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-)
409
409
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
410
410
 
411
411
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -424,6 +424,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
424
424
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rankesterc"><img src="https://avatars.githubusercontent.com/u/114560457?v=4?s=100" width="100px;" alt="Ran Chen"/><br /><sub><b>Ran Chen</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rankesterc" title="Code">💻</a></td>
425
425
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jinliyl"><img src="https://avatars.githubusercontent.com/u/6469360?v=4?s=100" width="100px;" alt="jinliyl"/><br /><sub><b>jinliyl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Documentation">📖</a></td>
426
426
  </tr>
427
+ <tr>
428
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Osier-Yi"><img src="https://avatars.githubusercontent.com/u/8287381?v=4?s=100" width="100px;" alt="Osier-Yi"/><br /><sub><b>Osier-Yi</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Code">💻</a></td>
429
+ </tr>
427
430
  </tbody>
428
431
  <tfoot>
429
432
  <tr>
@@ -1,4 +1,4 @@
1
- mcp<1.10.0,>=1.8.0
1
+ mcp>=1.13
2
2
  fastapi>=0.104.0
3
3
  uvicorn[standard]>=0.24.0
4
4
  openai
@@ -50,7 +50,7 @@ bs4>=0.0.2
50
50
  [memory-ext]
51
51
 
52
52
  [memory-ext:python_full_version >= "3.12"]
53
- reme-ai==0.1.8
53
+ reme-ai==0.1.9
54
54
 
55
55
  [sandbox]
56
56
  docker>=7.1.0