bohr-agent-sdk 0.1.104__py3-none-any.whl → 0.1.106__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bohr-agent-sdk
3
- Version: 0.1.104
3
+ Version: 0.1.106
4
4
  Summary: SDK for scientific agents
5
5
  Home-page: https://github.com/dptech-corp/bohr-agent-sdk/
6
6
  Author: DP Technology
@@ -30,7 +30,7 @@ Requires-Dist: paho-mqtt>=2.1.0
30
30
  Requires-Dist: redis>=6.2.0
31
31
  Requires-Dist: twine>=6.1.0
32
32
  Requires-Dist: build>=1.2.2.post1
33
- Requires-Dist: cloudpickle==2.2.0
33
+ Requires-Dist: cloudpickle
34
34
  Requires-Dist: watchdog>=6.0.0
35
35
  Requires-Dist: fastapi>=0.116.0
36
36
  Requires-Dist: bohrium-open-sdk
@@ -65,7 +65,7 @@ dp/agent/server/preprocessor.py,sha256=XUWu7QOwo_sIDMYS2b1OTrM33EXEVH_73vk-ju1Ok
65
65
  dp/agent/server/utils.py,sha256=ui3lca9EagcGqmYf8BKLsPARIzXxJ3jgN98yuEO3OSQ,1668
66
66
  dp/agent/server/executor/__init__.py,sha256=s95M5qKQk39Yi9qaVJZhk_nfj54quSf7EDghR3OCFUA,248
67
67
  dp/agent/server/executor/base_executor.py,sha256=EFJBsYVYAvuRbiLAbLOwLTw3h7ScjN025xnSP4uJHrQ,2052
68
- dp/agent/server/executor/dispatcher_executor.py,sha256=p2ISxvLUcR1QOPF5BxDLD7AFPFibmw5uKJJ_fL8zecY,10836
68
+ dp/agent/server/executor/dispatcher_executor.py,sha256=wUJEmCrLzckwinOd8Caf5H9TN-YVfHLpfYgkVFd2OC0,10828
69
69
  dp/agent/server/executor/local_executor.py,sha256=wYCclNZFkLb3v7KpW1nCnupO8piBES-esYlDAuz86zk,6120
70
70
  dp/agent/server/storage/__init__.py,sha256=Sgsyp5hb0_hhIGugAPfQFzBHt_854rS_MuMuE3sn8Gs,389
71
71
  dp/agent/server/storage/base_storage.py,sha256=728-oNG6N8isV95gZVnyi4vTznJPJhSjxw9Gl5Y_y5o,2356
@@ -73,8 +73,8 @@ dp/agent/server/storage/bohrium_storage.py,sha256=EsKX4dWWvZTn2TEhZv4zsvihfDK0mm
73
73
  dp/agent/server/storage/http_storage.py,sha256=KiySq7g9-iJr12XQCKKyJLn8wJoDnSRpQAR5_qPJ1ZU,1471
74
74
  dp/agent/server/storage/local_storage.py,sha256=t1wfjByjXew9ws3PuUxWxmZQ0-Wt1a6t4wmj3fW62GI,1352
75
75
  dp/agent/server/storage/oss_storage.py,sha256=pgjmi7Gir3Y5wkMDCvU4fvSls15fXT7Ax-h9MYHFPK0,3359
76
- bohr_agent_sdk-0.1.104.dist-info/METADATA,sha256=h9BBCLrH_qtMCtfHzoCpk0WIgppExXMvQ8jwnXhWFHg,10226
77
- bohr_agent_sdk-0.1.104.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
- bohr_agent_sdk-0.1.104.dist-info/entry_points.txt,sha256=5n5kneF5IbDQtoQ2WfF-QuBjDtsimJte9Rv9baSGgc0,86
79
- bohr_agent_sdk-0.1.104.dist-info/top_level.txt,sha256=87xLUDhu_1nQHoGLwlhJ6XlO7OsjILh6i1nX6ljFzDo,3
80
- bohr_agent_sdk-0.1.104.dist-info/RECORD,,
76
+ bohr_agent_sdk-0.1.106.dist-info/METADATA,sha256=gAYz_SBcnkqaV314ppLvyi9O8dekysp24LlvNhUGfdU,10219
77
+ bohr_agent_sdk-0.1.106.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
+ bohr_agent_sdk-0.1.106.dist-info/entry_points.txt,sha256=5n5kneF5IbDQtoQ2WfF-QuBjDtsimJte9Rv9baSGgc0,86
79
+ bohr_agent_sdk-0.1.106.dist-info/top_level.txt,sha256=87xLUDhu_1nQHoGLwlhJ6XlO7OsjILh6i1nX6ljFzDo,3
80
+ bohr_agent_sdk-0.1.106.dist-info/RECORD,,
@@ -138,8 +138,8 @@ class DispatcherExecutor(BaseExecutor):
138
138
  script += "from pathlib import Path\n\n"
139
139
  script += "if __name__ == \"__main__\":\n"
140
140
  script += " cwd = os.getcwd()\n"
141
- script += " kwargs = jsonpickle.loads(r'''%s''')\n" % \
142
- jsonpickle.dumps(kwargs)
141
+ script += " kwargs = jsonpickle.loads(%s)\n" % repr(
142
+ jsonpickle.dumps(kwargs))
143
143
  script += " try:\n"
144
144
  for line in func_def_script.splitlines():
145
145
  if line: