agentscope-runtime 1.0.0b1__py3-none-any.whl → 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. agentscope_runtime/adapters/agentscope/message.py +49 -6
  2. agentscope_runtime/adapters/agentscope/stream.py +81 -25
  3. agentscope_runtime/adapters/agentscope/tool/tool.py +1 -3
  4. agentscope_runtime/engine/app/agent_app.py +8 -1
  5. agentscope_runtime/engine/deployers/agentrun_deployer.py +2 -2
  6. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +52 -7
  7. agentscope_runtime/engine/runner.py +7 -6
  8. agentscope_runtime/engine/schemas/agent_schemas.py +21 -7
  9. agentscope_runtime/engine/services/agent_state/__init__.py +2 -0
  10. agentscope_runtime/engine/services/agent_state/state_service_factory.py +55 -0
  11. agentscope_runtime/engine/services/memory/__init__.py +2 -0
  12. agentscope_runtime/engine/services/memory/memory_service_factory.py +126 -0
  13. agentscope_runtime/engine/services/sandbox/__init__.py +2 -0
  14. agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py +49 -0
  15. agentscope_runtime/engine/services/service_factory.py +119 -0
  16. agentscope_runtime/engine/services/session_history/__init__.py +2 -0
  17. agentscope_runtime/engine/services/session_history/session_history_service_factory.py +73 -0
  18. agentscope_runtime/engine/services/utils/tablestore_service_utils.py +35 -10
  19. agentscope_runtime/engine/tracing/wrapper.py +49 -31
  20. agentscope_runtime/sandbox/manager/sandbox_manager.py +0 -3
  21. agentscope_runtime/version.py +1 -1
  22. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/METADATA +60 -6
  23. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/RECORD +27 -22
  24. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/WHEEL +0 -0
  25. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/entry_points.txt +0 -0
  26. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/licenses/LICENSE +0 -0
  27. {agentscope_runtime-1.0.0b1.dist-info → agentscope_runtime-1.0.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentscope-runtime
3
- Version: 1.0.0b1
3
+ Version: 1.0.1
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
@@ -11,7 +11,7 @@ Requires-Dist: uvicorn[standard]>=0.24.0
11
11
  Requires-Dist: openai
12
12
  Requires-Dist: pydantic>=2.11.7
13
13
  Requires-Dist: requests>=2.32.4
14
- Requires-Dist: agentscope>=1.0.6
14
+ Requires-Dist: agentscope>=1.0.9
15
15
  Requires-Dist: docker>=7.1.0
16
16
  Requires-Dist: redis>=6.0.0
17
17
  Requires-Dist: oss2>=2.19.1
@@ -301,9 +301,11 @@ You’ll see output streamed in **Server-Sent Events (SSE)** format:
301
301
  ```bash
302
302
  data: {"sequence_number":0,"object":"response","status":"created", ... }
303
303
  data: {"sequence_number":1,"object":"response","status":"in_progress", ... }
304
- data: {"sequence_number":2,"object":"content","status":"in_progress","text":"The" }
305
- data: {"sequence_number":3,"object":"content","status":"in_progress","text":" capital of France is Paris." }
306
- data: {"sequence_number":4,"object":"message","status":"completed","text":"The capital of France is Paris." }
304
+ data: {"sequence_number":2,"object":"message","status":"in_progress", ... }
305
+ data: {"sequence_number":3,"object":"content","status":"in_progress","text":"The" }
306
+ data: {"sequence_number":4,"object":"content","status":"in_progress","text":" capital of France is Paris." }
307
+ data: {"sequence_number":5,"object":"message","status":"completed","text":"The capital of France is Paris." }
308
+ data: {"sequence_number":6,"object":"response","status":"completed", ... }
307
309
  ```
308
310
 
309
311
  ### Sandbox Example
@@ -484,6 +486,22 @@ agentscope-registry.ap-southeast-1.cr.aliyuncs.com/agentscope/runtime-sandbox-ba
484
486
 
485
487
  ---
486
488
 
489
+ #### Serverless Sandbox Deployment
490
+
491
+ AgentScope Runtime also supports serverless deployment, which is suitable for running sandboxes in a serverless environment,
492
+ [Alibaba Cloud Function Compute (FC)](https://help.aliyun.com/zh/functioncompute/fc/) or [Alibaba Cloud AgentRun](https://docs.agent.run/).
493
+
494
+ First, please refer to the [documentation](https://runtime.agentscope.io/en/sandbox/advanced.html#optional-function-compute-fc-settings) to configure the serverless environment variables.
495
+ Make `CONTAINER_DEPLOYMENT` to `fc` or `agentrun` to enable serverless deployment.
496
+
497
+ Then, start a sandbox server, use the `--config` option to specify a serverless environment setup:
498
+
499
+ ```bash
500
+ # This command will load the settings defined in the `custom.env` file
501
+ runtime-sandbox-server --config fc.env
502
+ ```
503
+ After the server starts, you can access the sandbox server at baseurl `http://localhost:8000` and invoke sandbox tools described above.
504
+
487
505
  ## 📚 Cookbook
488
506
 
489
507
  - **[📖 Cookbook](https://runtime.agentscope.io/en/intro.html)**: Comprehensive tutorials
@@ -534,6 +552,40 @@ response = client.responses.create(
534
552
  print(response)
535
553
  ```
536
554
 
555
+ Besides, `DeployManager` also supports serverless deployments, such as deploying your agent app
556
+ to [ModelStudio](https://bailian.console.aliyun.com/?admin=1&tab=doc#/doc/?type=app&url=2983030)
557
+ or [AgentRun](https://docs.agent.run/).
558
+
559
+ ```python
560
+ from agentscope_runtime.engine.deployers import ModelStudioDeployManager
561
+ # Create deployment manager
562
+ deployer = ModelstudioDeployManager(
563
+ oss_config=OSSConfig(
564
+ access_key_id=os.environ.get("ALIBABA_CLOUD_ACCESS_KEY_ID"),
565
+ access_key_secret=os.environ.get("ALIBABA_CLOUD_ACCESS_KEY_SECRET"),
566
+ ),
567
+ modelstudio_config=ModelstudioConfig(
568
+ workspace_id=os.environ.get("MODELSTUDIO_WORKSPACE_ID"),
569
+ access_key_id=os.environ.get("ALIBABA_CLOUD_ACCESS_KEY_ID"),
570
+ access_key_secret=os.environ.get("ALIBABA_CLOUD_ACCESS_KEY_SECRET"),
571
+ dashscope_api_key=os.environ.get("DASHSCOPE_API_KEY"),
572
+ ),
573
+ )
574
+
575
+ # Deploy to ModelStudio
576
+ result = await app.deploy(
577
+ deployer,
578
+ deploy_name="agent-app-example",
579
+ telemetry_enabled=True,
580
+ requirements=["agentscope", "fastapi", "uvicorn"],
581
+ environment={
582
+ "PYTHONPATH": "/app",
583
+ "DASHSCOPE_API_KEY": os.environ.get("DASHSCOPE_API_KEY"),
584
+ },
585
+ )
586
+ ```
587
+
588
+ For more advanced serverless deployment guides, please refer to the [documentation](https://runtime.agentscope.io/en/advanced_deployment.html#method-4-modelstudio-deployment).
537
589
 
538
590
  ---
539
591
 
@@ -584,7 +636,7 @@ limitations under the License.
584
636
 
585
637
  ## Contributors ✨
586
638
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
587
- [![All Contributors](https://img.shields.io/badge/all_contributors-23-orange.svg?style=flat-square)](#contributors-)
639
+ [![All Contributors](https://img.shields.io/badge/all_contributors-25-orange.svg?style=flat-square)](#contributors-)
588
640
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
589
641
 
590
642
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/emoji-key/)):
@@ -624,6 +676,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/e
624
676
  <tr>
625
677
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/iSample"><img src="https://avatars.githubusercontent.com/u/12894421?v=4?s=100" width="100px;" alt="iSample"/><br /><sub><b>iSample</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Documentation">📖</a></td>
626
678
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/XiuShenAl"><img src="https://avatars.githubusercontent.com/u/242360128?v=4?s=100" width="100px;" alt="XiuShenAl"/><br /><sub><b>XiuShenAl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Documentation">📖</a></td>
679
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/k-farruh"><img src="https://avatars.githubusercontent.com/u/33511681?v=4?s=100" width="100px;" alt="Farruh Kushnazarov"/><br /><sub><b>Farruh Kushnazarov</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=k-farruh" title="Documentation">📖</a></td>
680
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/fengxsong"><img src="https://avatars.githubusercontent.com/u/7008971?v=4?s=100" width="100px;" alt="fengxsong"/><br /><sub><b>fengxsong</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Afengxsong" title="Bug reports">🐛</a></td>
627
681
  </tr>
628
682
  </tbody>
629
683
  <tfoot>
@@ -1,16 +1,16 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=yOMzjiBgCTJn4No0P10fQG-RDeZO0V-e17TXnO4tDT8,49
2
+ agentscope_runtime/version.py,sha256=haSsc-Hab6nifVBdUK_JfDyJVkfwq8oDcAL1IMhosOU,47
3
3
  agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- agentscope_runtime/adapters/agentscope/message.py,sha256=cq7O8A0wkAaibfWk8ULCywnPnUKATPfkb719I1DYZKs,20330
6
- agentscope_runtime/adapters/agentscope/stream.py,sha256=ht0A5PckYXlCZNl9jXqXu-KQrbtEglsffJpa2KPiu6U,19669
5
+ agentscope_runtime/adapters/agentscope/message.py,sha256=_15WqSdWHSt1IwMTm_lwqw5fo151raRt3_32azU2yw0,21957
6
+ agentscope_runtime/adapters/agentscope/stream.py,sha256=JWR4sLFx3aT8yYBtXhXXhKbM2f3mnHMcnbCvLMmIVlU,22243
7
7
  agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
8
8
  agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
9
9
  agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
10
10
  agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py,sha256=DDyhzzT2Y-3q4L0AkS8am1y5jsylxZpgJXWxB2abefQ,4535
11
11
  agentscope_runtime/adapters/agentscope/tool/__init__.py,sha256=wrBKu2FidSJuGBuhy2BEG0Xy9J9pZldtHxsKBs3iWQ0,249
12
12
  agentscope_runtime/adapters/agentscope/tool/sandbox_tool.py,sha256=amwtmhtCXDw9TVMUNFiFakNsfj3pp4fllHCBEXzvSEE,2002
13
- agentscope_runtime/adapters/agentscope/tool/tool.py,sha256=1ytZmXQ0u3Y-rGni_F2YFuNxMaeuZVwm0DE443jtYuM,7263
13
+ agentscope_runtime/adapters/agentscope/tool/tool.py,sha256=rgANo-1fByWIlyQk1Bmhscas3QVCVgDuSLMT1XFX76M,7235
14
14
  agentscope_runtime/adapters/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  agentscope_runtime/adapters/autogen/tool/__init__.py,sha256=FJXusI2gPKYOuAIN_eqMIPUxnJ34_NCPwtScTKosrWM,152
16
16
  agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG6B39SmDVlT2vHTguUII,6587
@@ -37,13 +37,13 @@ agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
37
37
  agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
38
38
  agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
39
39
  agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
40
- agentscope_runtime/engine/runner.py,sha256=EeHAbFBzGjk_XEO9w53yib0rRihFZWnQKYjL3Yqr8YU,8961
40
+ agentscope_runtime/engine/runner.py,sha256=LssZY01sEaoolqu-l1C7w6EOXY0NbGqGUxO6aaDYFKo,9007
41
41
  agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
42
- agentscope_runtime/engine/app/agent_app.py,sha256=E874OipHIAKN_nRDm-RF-bz0xsys-SQhtz4Zs1cnjyc,10417
42
+ agentscope_runtime/engine/app/agent_app.py,sha256=7s1qhH3-eWf3ev53_ZPFNVzUpeDLCwGku0B2bp3HQ7Y,10635
43
43
  agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
44
44
  agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
45
45
  agentscope_runtime/engine/deployers/__init__.py,sha256=_C1RH1pUZ6Jrc5OqnHJAImn79lHzARbzaRTuuqCvI7Y,540
46
- agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=yo6qY4V6JYqvzxgZjVy97RR9xeNF2sZxkDILN5YSmCM,101272
46
+ agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=2FfAAXLFr5pCVpL-EQgiVjOA-n3qKLIwhxnXwf4m29E,101272
47
47
  agentscope_runtime/engine/deployers/base.py,sha256=hqDaLIzGizTxKq-_-n61lYyL21knZxCTSa90UScpLh4,519
48
48
  agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
49
49
  agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=21YoKNGG9M6b7Qo0CZ0YrksiaDCrxJoSpaWth8ma6mo,8984
@@ -70,7 +70,7 @@ agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builde
70
70
  agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=4aBdBgkjSKaoAJiiDPYjf2Y6t1ianU5uucFGWbD5Cio,7528
71
71
  agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=OQNMZVMXS-Qv8OkYyr0lmBO5x6wZh2TYiPNFCVoq9RE,12377
72
72
  agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=qYPjEoNP_eJXPc3j-ClR0GnQKYDa0udJ-ymVGV-IsOs,169
73
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=SJHfkBggTC_fW_K2jsEzyxTHR6QMctX85xCgdSs2EnE,36615
73
+ agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=otcAs4XpNgs-TNljM35qGbDtZNeqvyIjWAWpsqXw8z8,38556
74
74
  agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=xsfoQWKidfT-S9sQWLygcNG_vGsppLQDlwXtBw1nziE,4784
75
75
  agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=QGYDwIqy9BswXFXtmaqm-vZj_SOcpW0Qy_5uas3t0IM,8391
76
76
  agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV7_SNu6wfI4myTku1tgBcAgykv9a10QMFGAaSI,2175
@@ -80,7 +80,7 @@ agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqij
80
80
  agentscope_runtime/engine/helpers/runner.py,sha256=xB9F95nkAxM7J8ZCwPhZSidvD9y4DN_bw3CQOICGZEY,855
81
81
  agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
82
  agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- agentscope_runtime/engine/schemas/agent_schemas.py,sha256=d5wr0814Wcp4oCX46y2f07Vh0z3-_W11zbyorTsa018,26745
83
+ agentscope_runtime/engine/schemas/agent_schemas.py,sha256=wNUl5khvOX21PJkpd7g5BRvCMHODSylI5OCE8096g-I,27030
84
84
  agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
85
85
  agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
86
86
  agentscope_runtime/engine/schemas/oai_llm.py,sha256=U0lG4phFd5WYRoYomoprW87voaBm7Mm-N0uqfm5e-20,16645
@@ -89,24 +89,29 @@ agentscope_runtime/engine/schemas/response_api.py,sha256=YWR1ZFrVbepdO9ZyLCe09si
89
89
  agentscope_runtime/engine/schemas/session.py,sha256=ctSMlTJHdd2HaJ_6tEOxNDZbLcexxSSiB8YI_vmBviw,627
90
90
  agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
91
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
92
- agentscope_runtime/engine/services/agent_state/__init__.py,sha256=oUtrN53dhf7Hg2hNKxoCBqZOyQ_ltCZH9XdL8QA8i6I,455
92
+ agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
93
+ agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
93
94
  agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=mBB2paGiPyp99srmr4F8nCV1b1n3-Uca8H8OXNTvb98,3368
94
95
  agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
95
- agentscope_runtime/engine/services/memory/__init__.py,sha256=rpuJIxWu6j4IQg1mzLpYLTW__9g40SoyZ3WMXtZXqaE,974
96
+ agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=8s2nLv7Vg-1-HmgLpFVXz4LRGgCxUghLnG0fOD4AArc,1752
97
+ agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
96
98
  agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
97
99
  agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
100
+ agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
98
101
  agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=AdLrvuYH-SsK35XKWJtAXrCPPy5FKeAH7K28XAeiA1U,5709
99
102
  agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
100
103
  agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
101
104
  agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
102
- agentscope_runtime/engine/services/sandbox/__init__.py,sha256=ZvkP1GHhWN_ZRJVqTpG50bBFf6l9YgSgj-tja_Zli6w,283
105
+ agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8MdzpGmrQDO_MSzGje1nZJ6Aay4,407
103
106
  agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
104
- agentscope_runtime/engine/services/session_history/__init__.py,sha256=zCxMwFH7wzEAl3P_XIBtUM1D3qNjlGH04s7OMB2_QY8,775
107
+ agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
108
+ agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
105
109
  agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=rKQEGCWWcIYQ8eixGPf1dv4kMU_Yzp_G7ELuBcdSBJk,5117
106
110
  agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
111
+ agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
107
112
  agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
108
113
  agentscope_runtime/engine/services/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=lGxGmxU6Q4fajnVlrIILozYD3QNhVgIJucdc0PDPs8A,10998
114
+ agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=YA4gojQy9c0SdXD6XJwTrBWVEPRjJmnzTYRDExPYuHg,11599
110
115
  agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
111
116
  agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
112
117
  agentscope_runtime/engine/tracing/base.py,sha256=Y9rU289wC72Fjax4FeHZP0AzxVwQvFCV6UUogqRRl54,10635
@@ -114,7 +119,7 @@ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYk
114
119
  agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
115
120
  agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
116
121
  agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
117
- agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
122
+ agentscope_runtime/engine/tracing/wrapper.py,sha256=mgvkdBrIjOt-q7UMSX77gsO7TVzl2PyDdoFUEv8rr-o,31524
118
123
  agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
119
124
  agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
120
125
  agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
@@ -173,7 +178,7 @@ agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w
173
178
  agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
174
179
  agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
175
180
  agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
176
- agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=S89Ho6QhCHVT79oYiwgKmFOUiwXRL-z8FJDgMPzojJs,28016
181
+ agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=EWrccNdodFHr_w4jkhZUIGJ5RrhpKA-hdYuXklRQXlM,27958
177
182
  agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
183
  agentscope_runtime/sandbox/manager/server/app.py,sha256=Qa6443dBuqg41hslqw14SsN7UPQJ-CqI3z5DU5Xpf3c,13641
179
184
  agentscope_runtime/sandbox/manager/server/config.py,sha256=yXiricKpA_r2zoMF7YpRgIxtJck89rzN9iwaVVLhK60,4451
@@ -232,9 +237,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
232
237
  agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
233
238
  agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
234
239
  agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
235
- agentscope_runtime-1.0.0b1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
236
- agentscope_runtime-1.0.0b1.dist-info/METADATA,sha256=mdCU34pRctP839liDy3SSYTm3mc_r1ytuTDrmhjbk94,35222
237
- agentscope_runtime-1.0.0b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
238
- agentscope_runtime-1.0.0b1.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
239
- agentscope_runtime-1.0.0b1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
240
- agentscope_runtime-1.0.0b1.dist-info/RECORD,,
240
+ agentscope_runtime-1.0.1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
241
+ agentscope_runtime-1.0.1.dist-info/METADATA,sha256=XBiVl_6E3fB_BQDp-sOYHd4c4QeehOjQ7jc5D_ueyDc,38416
242
+ agentscope_runtime-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
243
+ agentscope_runtime-1.0.1.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
244
+ agentscope_runtime-1.0.1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
245
+ agentscope_runtime-1.0.1.dist-info/RECORD,,