synapse-sdk 1.0.0a11__py3-none-any.whl → 2026.1.1b2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of synapse-sdk might be problematic. Click here for more details.

Files changed (261) hide show
  1. synapse_sdk/__init__.py +24 -0
  2. synapse_sdk/cli/__init__.py +9 -8
  3. synapse_sdk/cli/agent/__init__.py +25 -0
  4. synapse_sdk/cli/agent/config.py +104 -0
  5. synapse_sdk/cli/agent/select.py +197 -0
  6. synapse_sdk/cli/auth.py +104 -0
  7. synapse_sdk/cli/main.py +1025 -0
  8. synapse_sdk/cli/plugin/__init__.py +58 -0
  9. synapse_sdk/cli/plugin/create.py +566 -0
  10. synapse_sdk/cli/plugin/job.py +196 -0
  11. synapse_sdk/cli/plugin/publish.py +322 -0
  12. synapse_sdk/cli/plugin/run.py +131 -0
  13. synapse_sdk/cli/plugin/test.py +200 -0
  14. synapse_sdk/clients/README.md +239 -0
  15. synapse_sdk/clients/__init__.py +5 -0
  16. synapse_sdk/clients/_template.py +266 -0
  17. synapse_sdk/clients/agent/__init__.py +84 -29
  18. synapse_sdk/clients/agent/async_ray.py +289 -0
  19. synapse_sdk/clients/agent/container.py +83 -0
  20. synapse_sdk/clients/agent/plugin.py +101 -0
  21. synapse_sdk/clients/agent/ray.py +296 -39
  22. synapse_sdk/clients/backend/__init__.py +152 -12
  23. synapse_sdk/clients/backend/annotation.py +164 -22
  24. synapse_sdk/clients/backend/core.py +101 -0
  25. synapse_sdk/clients/backend/data_collection.py +292 -0
  26. synapse_sdk/clients/backend/hitl.py +87 -0
  27. synapse_sdk/clients/backend/integration.py +374 -46
  28. synapse_sdk/clients/backend/ml.py +134 -22
  29. synapse_sdk/clients/backend/models.py +247 -0
  30. synapse_sdk/clients/base.py +538 -59
  31. synapse_sdk/clients/exceptions.py +35 -7
  32. synapse_sdk/clients/pipeline/__init__.py +5 -0
  33. synapse_sdk/clients/pipeline/client.py +636 -0
  34. synapse_sdk/clients/protocols.py +178 -0
  35. synapse_sdk/clients/utils.py +86 -8
  36. synapse_sdk/clients/validation.py +58 -0
  37. synapse_sdk/enums.py +76 -0
  38. synapse_sdk/exceptions.py +168 -0
  39. synapse_sdk/integrations/__init__.py +74 -0
  40. synapse_sdk/integrations/_base.py +119 -0
  41. synapse_sdk/integrations/_context.py +53 -0
  42. synapse_sdk/integrations/ultralytics/__init__.py +78 -0
  43. synapse_sdk/integrations/ultralytics/_callbacks.py +126 -0
  44. synapse_sdk/integrations/ultralytics/_patches.py +124 -0
  45. synapse_sdk/loggers.py +476 -95
  46. synapse_sdk/mcp/MCP.md +69 -0
  47. synapse_sdk/mcp/__init__.py +48 -0
  48. synapse_sdk/mcp/__main__.py +6 -0
  49. synapse_sdk/mcp/config.py +349 -0
  50. synapse_sdk/mcp/prompts/__init__.py +4 -0
  51. synapse_sdk/mcp/resources/__init__.py +4 -0
  52. synapse_sdk/mcp/server.py +1352 -0
  53. synapse_sdk/mcp/tools/__init__.py +6 -0
  54. synapse_sdk/plugins/__init__.py +133 -9
  55. synapse_sdk/plugins/action.py +229 -0
  56. synapse_sdk/plugins/actions/__init__.py +82 -0
  57. synapse_sdk/plugins/actions/dataset/__init__.py +37 -0
  58. synapse_sdk/plugins/actions/dataset/action.py +471 -0
  59. synapse_sdk/plugins/actions/export/__init__.py +55 -0
  60. synapse_sdk/plugins/actions/export/action.py +183 -0
  61. synapse_sdk/plugins/actions/export/context.py +59 -0
  62. synapse_sdk/plugins/actions/inference/__init__.py +84 -0
  63. synapse_sdk/plugins/actions/inference/action.py +285 -0
  64. synapse_sdk/plugins/actions/inference/context.py +81 -0
  65. synapse_sdk/plugins/actions/inference/deployment.py +322 -0
  66. synapse_sdk/plugins/actions/inference/serve.py +252 -0
  67. synapse_sdk/plugins/actions/train/__init__.py +54 -0
  68. synapse_sdk/plugins/actions/train/action.py +326 -0
  69. synapse_sdk/plugins/actions/train/context.py +57 -0
  70. synapse_sdk/plugins/actions/upload/__init__.py +49 -0
  71. synapse_sdk/plugins/actions/upload/action.py +165 -0
  72. synapse_sdk/plugins/actions/upload/context.py +61 -0
  73. synapse_sdk/plugins/config.py +98 -0
  74. synapse_sdk/plugins/context/__init__.py +109 -0
  75. synapse_sdk/plugins/context/env.py +113 -0
  76. synapse_sdk/plugins/datasets/__init__.py +113 -0
  77. synapse_sdk/plugins/datasets/converters/__init__.py +76 -0
  78. synapse_sdk/plugins/datasets/converters/base.py +347 -0
  79. synapse_sdk/plugins/datasets/converters/yolo/__init__.py +9 -0
  80. synapse_sdk/plugins/datasets/converters/yolo/from_dm.py +468 -0
  81. synapse_sdk/plugins/datasets/converters/yolo/to_dm.py +381 -0
  82. synapse_sdk/plugins/datasets/formats/__init__.py +82 -0
  83. synapse_sdk/plugins/datasets/formats/dm.py +351 -0
  84. synapse_sdk/plugins/datasets/formats/yolo.py +240 -0
  85. synapse_sdk/plugins/decorators.py +83 -0
  86. synapse_sdk/plugins/discovery.py +790 -0
  87. synapse_sdk/plugins/docs/ACTION_DEV_GUIDE.md +933 -0
  88. synapse_sdk/plugins/docs/ARCHITECTURE.md +1225 -0
  89. synapse_sdk/plugins/docs/LOGGING_SYSTEM.md +683 -0
  90. synapse_sdk/plugins/docs/OVERVIEW.md +531 -0
  91. synapse_sdk/plugins/docs/PIPELINE_GUIDE.md +145 -0
  92. synapse_sdk/plugins/docs/README.md +513 -0
  93. synapse_sdk/plugins/docs/STEP.md +656 -0
  94. synapse_sdk/plugins/enums.py +70 -10
  95. synapse_sdk/plugins/errors.py +92 -0
  96. synapse_sdk/plugins/executors/__init__.py +43 -0
  97. synapse_sdk/plugins/executors/local.py +99 -0
  98. synapse_sdk/plugins/executors/ray/__init__.py +18 -0
  99. synapse_sdk/plugins/executors/ray/base.py +282 -0
  100. synapse_sdk/plugins/executors/ray/job.py +298 -0
  101. synapse_sdk/plugins/executors/ray/jobs_api.py +511 -0
  102. synapse_sdk/plugins/executors/ray/packaging.py +137 -0
  103. synapse_sdk/plugins/executors/ray/pipeline.py +792 -0
  104. synapse_sdk/plugins/executors/ray/task.py +257 -0
  105. synapse_sdk/plugins/models/__init__.py +26 -0
  106. synapse_sdk/plugins/models/logger.py +173 -0
  107. synapse_sdk/plugins/models/pipeline.py +25 -0
  108. synapse_sdk/plugins/pipelines/__init__.py +81 -0
  109. synapse_sdk/plugins/pipelines/action_pipeline.py +417 -0
  110. synapse_sdk/plugins/pipelines/context.py +107 -0
  111. synapse_sdk/plugins/pipelines/display.py +311 -0
  112. synapse_sdk/plugins/runner.py +114 -0
  113. synapse_sdk/plugins/schemas/__init__.py +19 -0
  114. synapse_sdk/plugins/schemas/results.py +152 -0
  115. synapse_sdk/plugins/steps/__init__.py +63 -0
  116. synapse_sdk/plugins/steps/base.py +128 -0
  117. synapse_sdk/plugins/steps/context.py +90 -0
  118. synapse_sdk/plugins/steps/orchestrator.py +128 -0
  119. synapse_sdk/plugins/steps/registry.py +103 -0
  120. synapse_sdk/plugins/steps/utils/__init__.py +20 -0
  121. synapse_sdk/plugins/steps/utils/logging.py +85 -0
  122. synapse_sdk/plugins/steps/utils/timing.py +71 -0
  123. synapse_sdk/plugins/steps/utils/validation.py +68 -0
  124. synapse_sdk/plugins/templates/__init__.py +50 -0
  125. synapse_sdk/plugins/templates/base/.gitignore.j2 +26 -0
  126. synapse_sdk/plugins/templates/base/.synapseignore.j2 +11 -0
  127. synapse_sdk/plugins/templates/base/README.md.j2 +26 -0
  128. synapse_sdk/plugins/templates/base/plugin/__init__.py.j2 +1 -0
  129. synapse_sdk/plugins/templates/base/pyproject.toml.j2 +14 -0
  130. synapse_sdk/plugins/templates/base/requirements.txt.j2 +1 -0
  131. synapse_sdk/plugins/templates/custom/plugin/main.py.j2 +18 -0
  132. synapse_sdk/plugins/templates/data_validation/plugin/validate.py.j2 +32 -0
  133. synapse_sdk/plugins/templates/export/plugin/export.py.j2 +36 -0
  134. synapse_sdk/plugins/templates/neural_net/plugin/inference.py.j2 +36 -0
  135. synapse_sdk/plugins/templates/neural_net/plugin/train.py.j2 +33 -0
  136. synapse_sdk/plugins/templates/post_annotation/plugin/post_annotate.py.j2 +32 -0
  137. synapse_sdk/plugins/templates/pre_annotation/plugin/pre_annotate.py.j2 +32 -0
  138. synapse_sdk/plugins/templates/smart_tool/plugin/auto_label.py.j2 +44 -0
  139. synapse_sdk/plugins/templates/upload/plugin/upload.py.j2 +35 -0
  140. synapse_sdk/plugins/testing/__init__.py +25 -0
  141. synapse_sdk/plugins/testing/sample_actions.py +98 -0
  142. synapse_sdk/plugins/types.py +206 -0
  143. synapse_sdk/plugins/upload.py +595 -64
  144. synapse_sdk/plugins/utils.py +325 -37
  145. synapse_sdk/shared/__init__.py +25 -0
  146. synapse_sdk/utils/__init__.py +1 -0
  147. synapse_sdk/utils/auth.py +74 -0
  148. synapse_sdk/utils/file/__init__.py +58 -0
  149. synapse_sdk/utils/file/archive.py +449 -0
  150. synapse_sdk/utils/file/checksum.py +167 -0
  151. synapse_sdk/utils/file/download.py +286 -0
  152. synapse_sdk/utils/file/io.py +129 -0
  153. synapse_sdk/utils/file/requirements.py +36 -0
  154. synapse_sdk/utils/network.py +168 -0
  155. synapse_sdk/utils/storage/__init__.py +238 -0
  156. synapse_sdk/utils/storage/config.py +188 -0
  157. synapse_sdk/utils/storage/errors.py +52 -0
  158. synapse_sdk/utils/storage/providers/__init__.py +13 -0
  159. synapse_sdk/utils/storage/providers/base.py +76 -0
  160. synapse_sdk/utils/storage/providers/gcs.py +168 -0
  161. synapse_sdk/utils/storage/providers/http.py +250 -0
  162. synapse_sdk/utils/storage/providers/local.py +126 -0
  163. synapse_sdk/utils/storage/providers/s3.py +177 -0
  164. synapse_sdk/utils/storage/providers/sftp.py +208 -0
  165. synapse_sdk/utils/storage/registry.py +125 -0
  166. synapse_sdk/utils/websocket.py +99 -0
  167. synapse_sdk-2026.1.1b2.dist-info/METADATA +715 -0
  168. synapse_sdk-2026.1.1b2.dist-info/RECORD +172 -0
  169. {synapse_sdk-1.0.0a11.dist-info → synapse_sdk-2026.1.1b2.dist-info}/WHEEL +1 -1
  170. synapse_sdk-2026.1.1b2.dist-info/licenses/LICENSE +201 -0
  171. locale/en/LC_MESSAGES/messages.mo +0 -0
  172. locale/en/LC_MESSAGES/messages.po +0 -39
  173. locale/ko/LC_MESSAGES/messages.mo +0 -0
  174. locale/ko/LC_MESSAGES/messages.po +0 -34
  175. synapse_sdk/cli/create_plugin.py +0 -10
  176. synapse_sdk/clients/agent/core.py +0 -7
  177. synapse_sdk/clients/agent/service.py +0 -15
  178. synapse_sdk/clients/backend/dataset.py +0 -51
  179. synapse_sdk/clients/ray/__init__.py +0 -6
  180. synapse_sdk/clients/ray/core.py +0 -22
  181. synapse_sdk/clients/ray/serve.py +0 -20
  182. synapse_sdk/i18n.py +0 -35
  183. synapse_sdk/plugins/categories/__init__.py +0 -0
  184. synapse_sdk/plugins/categories/base.py +0 -235
  185. synapse_sdk/plugins/categories/data_validation/__init__.py +0 -0
  186. synapse_sdk/plugins/categories/data_validation/actions/__init__.py +0 -0
  187. synapse_sdk/plugins/categories/data_validation/actions/validation.py +0 -10
  188. synapse_sdk/plugins/categories/data_validation/templates/config.yaml +0 -3
  189. synapse_sdk/plugins/categories/data_validation/templates/plugin/__init__.py +0 -0
  190. synapse_sdk/plugins/categories/data_validation/templates/plugin/validation.py +0 -5
  191. synapse_sdk/plugins/categories/decorators.py +0 -13
  192. synapse_sdk/plugins/categories/export/__init__.py +0 -0
  193. synapse_sdk/plugins/categories/export/actions/__init__.py +0 -0
  194. synapse_sdk/plugins/categories/export/actions/export.py +0 -10
  195. synapse_sdk/plugins/categories/import/__init__.py +0 -0
  196. synapse_sdk/plugins/categories/import/actions/__init__.py +0 -0
  197. synapse_sdk/plugins/categories/import/actions/import.py +0 -10
  198. synapse_sdk/plugins/categories/neural_net/__init__.py +0 -0
  199. synapse_sdk/plugins/categories/neural_net/actions/__init__.py +0 -0
  200. synapse_sdk/plugins/categories/neural_net/actions/deployment.py +0 -45
  201. synapse_sdk/plugins/categories/neural_net/actions/inference.py +0 -18
  202. synapse_sdk/plugins/categories/neural_net/actions/test.py +0 -10
  203. synapse_sdk/plugins/categories/neural_net/actions/train.py +0 -143
  204. synapse_sdk/plugins/categories/neural_net/templates/config.yaml +0 -12
  205. synapse_sdk/plugins/categories/neural_net/templates/plugin/__init__.py +0 -0
  206. synapse_sdk/plugins/categories/neural_net/templates/plugin/inference.py +0 -4
  207. synapse_sdk/plugins/categories/neural_net/templates/plugin/test.py +0 -2
  208. synapse_sdk/plugins/categories/neural_net/templates/plugin/train.py +0 -14
  209. synapse_sdk/plugins/categories/post_annotation/__init__.py +0 -0
  210. synapse_sdk/plugins/categories/post_annotation/actions/__init__.py +0 -0
  211. synapse_sdk/plugins/categories/post_annotation/actions/post_annotation.py +0 -10
  212. synapse_sdk/plugins/categories/post_annotation/templates/config.yaml +0 -3
  213. synapse_sdk/plugins/categories/post_annotation/templates/plugin/__init__.py +0 -0
  214. synapse_sdk/plugins/categories/post_annotation/templates/plugin/post_annotation.py +0 -3
  215. synapse_sdk/plugins/categories/pre_annotation/__init__.py +0 -0
  216. synapse_sdk/plugins/categories/pre_annotation/actions/__init__.py +0 -0
  217. synapse_sdk/plugins/categories/pre_annotation/actions/pre_annotation.py +0 -10
  218. synapse_sdk/plugins/categories/pre_annotation/templates/config.yaml +0 -3
  219. synapse_sdk/plugins/categories/pre_annotation/templates/plugin/__init__.py +0 -0
  220. synapse_sdk/plugins/categories/pre_annotation/templates/plugin/pre_annotation.py +0 -3
  221. synapse_sdk/plugins/categories/registry.py +0 -16
  222. synapse_sdk/plugins/categories/smart_tool/__init__.py +0 -0
  223. synapse_sdk/plugins/categories/smart_tool/actions/__init__.py +0 -0
  224. synapse_sdk/plugins/categories/smart_tool/actions/auto_label.py +0 -37
  225. synapse_sdk/plugins/categories/smart_tool/templates/config.yaml +0 -7
  226. synapse_sdk/plugins/categories/smart_tool/templates/plugin/__init__.py +0 -0
  227. synapse_sdk/plugins/categories/smart_tool/templates/plugin/auto_label.py +0 -11
  228. synapse_sdk/plugins/categories/templates.py +0 -32
  229. synapse_sdk/plugins/cli/__init__.py +0 -21
  230. synapse_sdk/plugins/cli/publish.py +0 -37
  231. synapse_sdk/plugins/cli/run.py +0 -67
  232. synapse_sdk/plugins/exceptions.py +0 -22
  233. synapse_sdk/plugins/models.py +0 -121
  234. synapse_sdk/plugins/templates/cookiecutter.json +0 -11
  235. synapse_sdk/plugins/templates/hooks/post_gen_project.py +0 -3
  236. synapse_sdk/plugins/templates/hooks/pre_prompt.py +0 -21
  237. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/.env +0 -24
  238. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/.env.dist +0 -24
  239. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/.gitignore +0 -27
  240. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/.pre-commit-config.yaml +0 -7
  241. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/README.md +0 -5
  242. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/config.yaml +0 -6
  243. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/main.py +0 -4
  244. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/plugin/__init__.py +0 -0
  245. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/pyproject.toml +0 -13
  246. synapse_sdk/plugins/templates/synapse-{{cookiecutter.plugin_code}}-plugin/requirements.txt +0 -1
  247. synapse_sdk/shared/enums.py +0 -8
  248. synapse_sdk/utils/debug.py +0 -5
  249. synapse_sdk/utils/file.py +0 -87
  250. synapse_sdk/utils/module_loading.py +0 -29
  251. synapse_sdk/utils/pydantic/__init__.py +0 -0
  252. synapse_sdk/utils/pydantic/config.py +0 -4
  253. synapse_sdk/utils/pydantic/errors.py +0 -33
  254. synapse_sdk/utils/pydantic/validators.py +0 -7
  255. synapse_sdk/utils/storage.py +0 -91
  256. synapse_sdk/utils/string.py +0 -11
  257. synapse_sdk-1.0.0a11.dist-info/LICENSE +0 -21
  258. synapse_sdk-1.0.0a11.dist-info/METADATA +0 -43
  259. synapse_sdk-1.0.0a11.dist-info/RECORD +0 -111
  260. {synapse_sdk-1.0.0a11.dist-info → synapse_sdk-2026.1.1b2.dist-info}/entry_points.txt +0 -0
  261. {synapse_sdk-1.0.0a11.dist-info → synapse_sdk-2026.1.1b2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,172 @@
1
+ synapse_sdk/__init__.py,sha256=QG2PVPHEgpFFBmZOcdsfHGSz2R87pEtY1xjJ18mKuco,1044
2
+ synapse_sdk/enums.py,sha256=NxLH5ZAYKzel97SffPJxlHVNlA-rcCPGwLMrbE3OwjQ,2514
3
+ synapse_sdk/exceptions.py,sha256=DVwa-u44DdWzaL0yw09ISw0pG6s61153qvdrfzSonAY,4952
4
+ synapse_sdk/loggers.py,sha256=pK7D1xKl1ArKRWhD-t_ZSXmeL3S95r2yrwCnqqp-B3I,16080
5
+ synapse_sdk/cli/__init__.py,sha256=DaZCMyV0nXDvSkl3HjZJTryYs_5BaJkwhM7uL210kg4,225
6
+ synapse_sdk/cli/auth.py,sha256=tahkIMYIglddx6vRWmRHnIOY4A-R4Q5EIUI-MrCtGCo,2595
7
+ synapse_sdk/cli/main.py,sha256=tJuvs6y838tPcStO3ncjJcqlPgKyFRVqUWkAEFYczqY,32856
8
+ synapse_sdk/cli/agent/__init__.py,sha256=9-EZslj2LeVsu2DB7U2zlw2HYRJKdYTvA7EouCGvf7E,497
9
+ synapse_sdk/cli/agent/config.py,sha256=KozIGsh4T-AXZMTiPgG3N8oMneUI6_UdScPZjg99y5U,2283
10
+ synapse_sdk/cli/agent/select.py,sha256=nvRaml7mmqvq1mXgyq7FCslcZW4ag7v4gnm8dOLis0U,5553
11
+ synapse_sdk/cli/plugin/__init__.py,sha256=eApAjDhUkPsER-hUvwEOAHtyFS4JshJMDXAti9Npf2E,1120
12
+ synapse_sdk/cli/plugin/create.py,sha256=oyZAtA798_nmIdu-EELvGxgxbHMAUEQ38OZkXPMJSM8,17413
13
+ synapse_sdk/cli/plugin/job.py,sha256=Mk-ThOnwc7gDhlkL7sDP-haA1UBmouGmnL1jbuSvRcw,5710
14
+ synapse_sdk/cli/plugin/publish.py,sha256=EpumVYJgARmTy6h51fBIwCHN22AIRU1eXnhZo5QTGCM,9163
15
+ synapse_sdk/cli/plugin/run.py,sha256=98kopfdnyyh2mn8NA7Y91oTLyw-KX85Hg7NxHF1wOY0,3277
16
+ synapse_sdk/cli/plugin/test.py,sha256=aLEJg0Rrw6eKW-l3XChxwNL_GBRb_y6LNhLggZ1yH28,6281
17
+ synapse_sdk/clients/README.md,sha256=gNbHO9ytI4JPBPtdiz8NxewJe7yPQtZJxC8VDHSyJhE,7125
18
+ synapse_sdk/clients/__init__.py,sha256=b6CerUaZ7rdF9-mittM8u_5IVeGob_D1wpUU84YRFhY,209
19
+ synapse_sdk/clients/_template.py,sha256=H7XGHND-t7LHhvPAuKEkjqNfW9WwtLzsplUPpqSY1OQ,7709
20
+ synapse_sdk/clients/base.py,sha256=7pmXjI7M7dMD4CHQ3EMem_aA-EnEo0eXh8iolu4sdTw,20242
21
+ synapse_sdk/clients/exceptions.py,sha256=b6TcKrQcOs6r6i91S0_eo9epQeHAoMACSrDqdwFq09s,788
22
+ synapse_sdk/clients/protocols.py,sha256=2Ks8OFukD2Rh1ULC1EkSyxhThVDAz5lZhiw-3NSjnuU,4434
23
+ synapse_sdk/clients/utils.py,sha256=MmOXlJTkswdNtyYQ4SD3pjeYjvgDwbKNF27pvsweG-Q,2751
24
+ synapse_sdk/clients/validation.py,sha256=2Tx9IQRExq8mbpeVayXv6ZqzsPloU46xrdqaFhghs8E,1965
25
+ synapse_sdk/clients/agent/__init__.py,sha256=melZp1Or94qaA_mEB-tB6ZguwGDtcOyakLQRESAkIQg,3472
26
+ synapse_sdk/clients/agent/async_ray.py,sha256=NduPYmmacFZ31D9z8hCHzuGrgbKSdEIjW-J079NS0uo,10158
27
+ synapse_sdk/clients/agent/container.py,sha256=5YPGVh8-qctxKNGLVIqkXvepu74O4YVu7cyepuXGy-Q,2976
28
+ synapse_sdk/clients/agent/plugin.py,sha256=1AIkdGDQdQ_DgWX8L2y7yT4GKW466L0ddp24LD3nmGI,3434
29
+ synapse_sdk/clients/agent/ray.py,sha256=uDFJCdfGEuqc9suCV-M4OAiMe4DWZMSXiL59LrKIprU,10583
30
+ synapse_sdk/clients/backend/__init__.py,sha256=kVkmHXzBo09aoweKI-or35IivbrRuEQemkcAZUE5iEU,5145
31
+ synapse_sdk/clients/backend/annotation.py,sha256=IB8R0qlOh7vsIAGxISt2GzXuBQecyOEaE0MFs__W76k,4785
32
+ synapse_sdk/clients/backend/core.py,sha256=gXPRrGzOhYRkczeEjLs2rjbA6xxkDFg_0oU-O2iHhc4,3139
33
+ synapse_sdk/clients/backend/data_collection.py,sha256=7A7_EB5upoDatIDfxocn7ZQaoAnIIoNy2HrsSECfXKY,9439
34
+ synapse_sdk/clients/backend/hitl.py,sha256=y9k91GCA-bclmHrWzTdAzFe6naaklBemdS_fSOKYMw8,2405
35
+ synapse_sdk/clients/backend/integration.py,sha256=HOUAkHnUqXiA4rYmrS6GnAWrYsPhPgAH6CdxJMs3Ouc,11538
36
+ synapse_sdk/clients/backend/ml.py,sha256=2b45YQ6ClvMzwcNEDsxrTqhv27bUjnMAXrJmIJ0tu28,3913
37
+ synapse_sdk/clients/backend/models.py,sha256=qM8kktObDqmr8lY1cjGu_PX1yfaiuITXXdc4khv0D6k,5829
38
+ synapse_sdk/clients/pipeline/__init__.py,sha256=AVoMXhBMPTVqLqlRNK1k5cWZQsJAmhr0lLtN9xP2OI4,165
39
+ synapse_sdk/clients/pipeline/client.py,sha256=5iMd4wN0nZono6Zj3PkMxxJO7whLP3LsL5VlXdNQ1AQ,21625
40
+ synapse_sdk/integrations/__init__.py,sha256=NK8tohBXxfuq7fs6AVXabLYaWmEPSD56RhImfGZ6awo,2329
41
+ synapse_sdk/integrations/_base.py,sha256=E5XrTTFqRznDpIRri4-ItzUcd1ygmubJ3SuqU6oDptc,3106
42
+ synapse_sdk/integrations/_context.py,sha256=kr9Eo0QrNNW7yFsEpMhmhm57qHymW3y-VUO3xllDsVI,1312
43
+ synapse_sdk/integrations/ultralytics/__init__.py,sha256=JzCq4kC70CvSqs4DN5Yin-Q6q95ZKSwyMAMZcf8FHOs,2328
44
+ synapse_sdk/integrations/ultralytics/_callbacks.py,sha256=Dc0DZXV26sHOBIuZoj9AEry2hoGHynk5YDHpHnifXiM,3380
45
+ synapse_sdk/integrations/ultralytics/_patches.py,sha256=C3rK2c3WGU_-R1kLXuzh1QBTfmVxBdzulUwJHz_DqtU,3231
46
+ synapse_sdk/mcp/MCP.md,sha256=GouVOPnN7HoOdcX5cNIY0hLvFNhgPYyKPSorE0QMB7w,1825
47
+ synapse_sdk/mcp/__init__.py,sha256=aoGCuyfrtorhiIVptOkyj4uNLiG_hLq-H1cQjL4jGYk,1196
48
+ synapse_sdk/mcp/__main__.py,sha256=pN8cl_8TXyLfQNAW3Oem9jZvLeZlTcUCXEIeH6wm9yE,156
49
+ synapse_sdk/mcp/config.py,sha256=AK53g5cAFweZNUT1eIrNtWD9nyFGH-_XCQanTowAcZM,11800
50
+ synapse_sdk/mcp/server.py,sha256=lQcgifhpkRgKIc1UHqGosDO3-q-JQ_MJDd8sVrOkva8,38608
51
+ synapse_sdk/mcp/prompts/__init__.py,sha256=w9l3o3a94uTv9Ddl5kbA_TO0lQasA4Dmtjmn3D-23qE,90
52
+ synapse_sdk/mcp/resources/__init__.py,sha256=1s51bbL8wwF8RaMXAkJpF-MOhuw6kX6KFwOj5sij9iQ,111
53
+ synapse_sdk/mcp/tools/__init__.py,sha256=AJYsZuJKqT_byTpW6Zne13me4Mr0R6Gn9S6WW-D4gs0,201
54
+ synapse_sdk/plugins/__init__.py,sha256=bnSXmEEePyHGdKD-0ZPk54rvi5zvDDznIjAsATmwEUQ,3456
55
+ synapse_sdk/plugins/action.py,sha256=LdXF_GVHvAIVxmnS_47xFsXtsh20aeFH_Fx2Rgr9174,8009
56
+ synapse_sdk/plugins/config.py,sha256=nbtTzktumHgRj2tzUyhxA4zdhooPXSdCkmloFuVxHwg,3521
57
+ synapse_sdk/plugins/decorators.py,sha256=FKYNH-270vjRz5jHk9zQ0L_ru9AoWqsNn4xfyI9WCmk,2958
58
+ synapse_sdk/plugins/discovery.py,sha256=2Vg_ddBpz2Tg_oZ93c-17DfC8ooF7bFuGVLMa_IOpCU,28482
59
+ synapse_sdk/plugins/enums.py,sha256=P_I_RjYgwCm8LSewSiQxKvtpIgFxGVIzO9OrDQ8LRKM,1588
60
+ synapse_sdk/plugins/errors.py,sha256=YCmF_2gDgImkD4A-opy3zfXu_rSjVJxavgPUYbowGxk,1859
61
+ synapse_sdk/plugins/runner.py,sha256=cAemUIGgyifjmEOLLDdoTt-uwwk4dYACQiDCLC10lI8,4373
62
+ synapse_sdk/plugins/types.py,sha256=Q42P6eXfQNZFuMGUET5Hw9PHJLK3ZG5hUl90Gj8vL-w,5447
63
+ synapse_sdk/plugins/upload.py,sha256=kabG6Cb2Iv1WEFh8rsn5yw3sx0lgQlfmzAf1lUwozsM,19045
64
+ synapse_sdk/plugins/utils.py,sha256=uH8J-RjTOBsAXy6c2KPhyglRb5S0EAldJu24nWazWNQ,10094
65
+ synapse_sdk/plugins/actions/__init__.py,sha256=ZBMnGoX_itzBOQUYeAgIBOCqDekf3V0U8HwBGgPLWPU,2248
66
+ synapse_sdk/plugins/actions/dataset/__init__.py,sha256=x11sMhVDp9eRHuExJwkjLPIaE7L6jRCm8p2eYb_k4PY,1056
67
+ synapse_sdk/plugins/actions/dataset/action.py,sha256=XAZx8w1IgToft2HUoObF7bHtGu0y0GvNXvj5qXP5aFs,16431
68
+ synapse_sdk/plugins/actions/export/__init__.py,sha256=1p7x9QoBabTWDU9l5jbfykOXnTgmxtk2DQpLUBmf5nw,1997
69
+ synapse_sdk/plugins/actions/export/action.py,sha256=veWVh_UTHLbWwT5yImJCJXAq99IT_zPYKDmxTpViCCE,6553
70
+ synapse_sdk/plugins/actions/export/context.py,sha256=xiT4hQh8H0xCmkvxLARgNKJDIYrP5H1ZLDltDNxG0hc,1797
71
+ synapse_sdk/plugins/actions/inference/__init__.py,sha256=ghrLT_xzhWVPcWYK_6kPmMt7iYhgUGvnYfFKNZ5cW4M,2853
72
+ synapse_sdk/plugins/actions/inference/action.py,sha256=oQOOa3UzFbhC3JFVIn-vJmMJLsn5pPSlPYc-Usrg8PY,9608
73
+ synapse_sdk/plugins/actions/inference/context.py,sha256=fedXIRgOIE00oDebdQOnoz5_qRogLchs7n0TrqIO9Qg,2781
74
+ synapse_sdk/plugins/actions/inference/deployment.py,sha256=pzU1weUSGzx29_wrh6uU0Wo1PDqfFnaf23ouqUt_W8Q,10986
75
+ synapse_sdk/plugins/actions/inference/serve.py,sha256=scewuEeFozNLZaXoWfglkE41EVkR3VIDHfxmU8u60gs,8675
76
+ synapse_sdk/plugins/actions/train/__init__.py,sha256=aIdbHeasiX6MqZo5LLTexL0JJvlu6CcrnITal_n574o,1844
77
+ synapse_sdk/plugins/actions/train/action.py,sha256=2_g5iLmmXn2lRa-yJy4PYqq4Ka4B0Y85maujnIdY0ag,11162
78
+ synapse_sdk/plugins/actions/train/context.py,sha256=T_ZezTZGdwmu8QYQtuc2h3Rffh90PfITel_bzEiznno,1742
79
+ synapse_sdk/plugins/actions/upload/__init__.py,sha256=POLkl7jtb8g4W_5JiO9IgpJ8zQs2oqHPH7oFCzu06Ys,1563
80
+ synapse_sdk/plugins/actions/upload/action.py,sha256=-r7MwPEaWUGBMYPNU4nnDC1JepfEuDGMkugF14IYXO0,5536
81
+ synapse_sdk/plugins/actions/upload/context.py,sha256=pjEKdf2wAFcA24qoA9FH5WDYP2yfpNlO1vkJuPR07VQ,2096
82
+ synapse_sdk/plugins/context/__init__.py,sha256=DaXRfa9iTZHypyX2Gh1yYgaNuMYz_RQByyZaz_KUp3s,3838
83
+ synapse_sdk/plugins/context/env.py,sha256=ykRCoMok-YRXEpT0E5nf7pqInx-7Lf_1mslw4slrhNA,3561
84
+ synapse_sdk/plugins/datasets/__init__.py,sha256=SESZMiYTzg_UFAdcgPGqxPeXA6KHniLZd2KbASMQP5s,2485
85
+ synapse_sdk/plugins/datasets/converters/__init__.py,sha256=OPkir7Z9LA6OrHqWPLFFff2s4E0Ze05HXgmUMF8OIYQ,2041
86
+ synapse_sdk/plugins/datasets/converters/base.py,sha256=HfM2NhbTayzyNTfj88IBCw4Lf9D4zmr2meCzt0ox9e0,12199
87
+ synapse_sdk/plugins/datasets/converters/yolo/__init__.py,sha256=It2S-gBCYp6IYdsdA73hBpcQVEDLGenOn7ys3hiUBIs,268
88
+ synapse_sdk/plugins/datasets/converters/yolo/from_dm.py,sha256=Man1kwtotpI1s_danXXHbFMGSrh00-UxWxG5d25_De0,17142
89
+ synapse_sdk/plugins/datasets/converters/yolo/to_dm.py,sha256=sYNarCVSP_raQA55ICoQQEGv8Pwrs2AJQSnngdVykxk,13028
90
+ synapse_sdk/plugins/datasets/formats/__init__.py,sha256=kPWsOiB_T92y5dQpfdVQw9JEYoQOY_L0MdedJd9N6ig,1588
91
+ synapse_sdk/plugins/datasets/formats/dm.py,sha256=mI0FPBlRyZ6N91KDSBsQU2o8uqTdt5r3JBBrDjfyOps,9531
92
+ synapse_sdk/plugins/datasets/formats/yolo.py,sha256=03Yt1icELmlJXMPRNWHk82Gg9ftqhUvRCWl8huX7TeA,6459
93
+ synapse_sdk/plugins/docs/ACTION_DEV_GUIDE.md,sha256=JH-IfIQUGXKmoTFKhd44MBU9hVrgcdjp8VH6aO_ou1w,24766
94
+ synapse_sdk/plugins/docs/ARCHITECTURE.md,sha256=HAaBid7v7LhWIZ_8d55w8nB6uPjfVmVlmXT__3R3suE,33000
95
+ synapse_sdk/plugins/docs/LOGGING_SYSTEM.md,sha256=tbQDo656ZpOct7N5JryD9bFI9ND2O1227Fr2neibAXU,18016
96
+ synapse_sdk/plugins/docs/OVERVIEW.md,sha256=xYHF8IRtDSjk320-Wmj3qndkAo1hter6BKvB2Tm8KT8,14293
97
+ synapse_sdk/plugins/docs/PIPELINE_GUIDE.md,sha256=RdLCNmFR31chonCCuGk4Vv7k-Tf_xwRq2fOCgP9Lw1s,5392
98
+ synapse_sdk/plugins/docs/README.md,sha256=0GiD6Gctf5_sHWOdLQv1ZBEcI5Or3msKtS1Zp2-6cHY,14508
99
+ synapse_sdk/plugins/docs/STEP.md,sha256=SWHrvAuDyuEP7peqr3J2jrD0ZEn-xClCz7IlGJkQazU,17977
100
+ synapse_sdk/plugins/executors/__init__.py,sha256=HemilgStlMYttfCwOZNfolLAfp507mlAr1ccDgSHygk,1123
101
+ synapse_sdk/plugins/executors/local.py,sha256=eVCynDOWFvPD8LB1fZQlU6kxrws-ysTLwDSdU6k_0ZY,3008
102
+ synapse_sdk/plugins/executors/ray/__init__.py,sha256=FVI7am-JBOyncIdM99oVs0yF-QMyH5k_IuFzFVZffb0,652
103
+ synapse_sdk/plugins/executors/ray/base.py,sha256=_Pfk17MNB9k7Ek9dsSQszuQYZOCkk12puckVnAUBNCg,10904
104
+ synapse_sdk/plugins/executors/ray/job.py,sha256=xlerTSM0nLYP886B4GQv-IQuDfbVHTKGlozcIR6xGE8,9571
105
+ synapse_sdk/plugins/executors/ray/jobs_api.py,sha256=LnqV9Y9hp1iuxC1p1kqdsAcQ1yhzuo7NLgxaYxY11Vc,16972
106
+ synapse_sdk/plugins/executors/ray/packaging.py,sha256=BGn_xFxnjhhGepIzQ8YQvmwpIdvS9rSFTpyfzz6gVKs,4680
107
+ synapse_sdk/plugins/executors/ray/pipeline.py,sha256=u07KzD9rClIO6e5q2gD8avL5sLa8w8KtkVzbGw0_gZ8,28769
108
+ synapse_sdk/plugins/executors/ray/task.py,sha256=y77kjfY6IMLz1-HL5A3aW34mDLxP4raF5coOgBJ8E2I,9378
109
+ synapse_sdk/plugins/models/__init__.py,sha256=dltgWBLiHMPCZs7g2dDCrQMDjKGieqcFAcC5-2tiavI,497
110
+ synapse_sdk/plugins/models/logger.py,sha256=7Pd806zAq3XwXX7hnacCFMzcJO9VACfgOxTNdLGCfOs,5793
111
+ synapse_sdk/plugins/models/pipeline.py,sha256=Ie3V_AaJtcUtBgC9wfR-U63GI04Q6uLdzieAXOfxNtQ,484
112
+ synapse_sdk/plugins/pipelines/__init__.py,sha256=dVJnEQuT2Uq42QWgO7BU0QFqfbq3UkFkEePxli8uuJM,2114
113
+ synapse_sdk/plugins/pipelines/action_pipeline.py,sha256=0eJBdZH7rWOA6MNLmoBo-DazFKO8evGNFer6lEaf0D8,14371
114
+ synapse_sdk/plugins/pipelines/context.py,sha256=iVRWoob6QaikYE2AFrrbiUYm9tKX6NWfsYNDz6Q6s-E,3500
115
+ synapse_sdk/plugins/pipelines/display.py,sha256=au3v1r4wz7c2FPQSneC_kfaqKga6ru9FirZvTr5MuQE,10819
116
+ synapse_sdk/plugins/schemas/__init__.py,sha256=XX1zzh-vwmSSmN0hH3Z3HB3Pb7flkaFvUxnQ8G6hjAg,350
117
+ synapse_sdk/plugins/schemas/results.py,sha256=emvwDc1wRDQ0VE1_AtRZCZJH0oLKNAAKrhQOyOFiX1k,5638
118
+ synapse_sdk/plugins/steps/__init__.py,sha256=lV9eFtrWKe4mV1OzskWxR_5uaE7huXDw8F_x0rLFl34,2077
119
+ synapse_sdk/plugins/steps/base.py,sha256=qni6zC5_Hc4d-n7-9lbBZ5gMrbZBb3wfY9qJvZxpwC4,3658
120
+ synapse_sdk/plugins/steps/context.py,sha256=rNYsYTKq086ZYtjaakgmrgPL1dwgMDJuHspHoD4ErCA,3372
121
+ synapse_sdk/plugins/steps/orchestrator.py,sha256=Q5MZMt7b2SWH3MW1LJKTKVYQrJXm_2_N5UHEwfLJd_Q,4664
122
+ synapse_sdk/plugins/steps/registry.py,sha256=UmoRRFnjCQBq4jnM7P-fqM-iTOuUsN98-TBZ0xcB6A8,3165
123
+ synapse_sdk/plugins/steps/utils/__init__.py,sha256=sKQ3sIaAHbrOCnjfMcLXQQIm9BI0z2Pj_ac4BnIJ55Y,677
124
+ synapse_sdk/plugins/steps/utils/logging.py,sha256=ezYPXdxDKWdUo6lPV7AANYZP0pn9XE5CF3N_qK32WQQ,2474
125
+ synapse_sdk/plugins/steps/utils/timing.py,sha256=CODKVItqB9MBst9j5pBxL2h_-xh9D42fD-JSJ5vInCY,2036
126
+ synapse_sdk/plugins/steps/utils/validation.py,sha256=B1FD4nFOvf6ic-claGaUT100hdDnBlIh6MrWhNnBSaM,2039
127
+ synapse_sdk/plugins/templates/__init__.py,sha256=8QBO96KiA5k4Ax35VLEsI3AdkzsTr_GhCZmqzV_AjmA,1563
128
+ synapse_sdk/plugins/templates/base/.gitignore.j2,sha256=WwueFJqIVyTxHIiDT1ebsRXj1KnVVCl0fcTAaDC6pQE,198
129
+ synapse_sdk/plugins/templates/base/.synapseignore.j2,sha256=Kub9cC6DAUzJptOJKohH6NV-oCzONB4cYetI7n_v8eM,121
130
+ synapse_sdk/plugins/templates/base/README.md.j2,sha256=W9vlf0bF46PZSsvLFZofXo4J3dMLKSxnCaOod0sV98Q,219
131
+ synapse_sdk/plugins/templates/base/pyproject.toml.j2,sha256=iKfkSxBsza0ZsgGYWyBKLutGhPegkyO1UJGUE5Yz_VY,225
132
+ synapse_sdk/plugins/templates/base/requirements.txt.j2,sha256=Yu6Si7Sgpq5k3glDxViT4PsS79Ssi-ZxEZPOIjfe0xI,12
133
+ synapse_sdk/plugins/templates/base/plugin/__init__.py.j2,sha256=2JSiewlz18HtQ8MRRWz7_rGa5nsVpHfwJAhpxIOhTIo,25
134
+ synapse_sdk/plugins/templates/custom/plugin/main.py.j2,sha256=2usU0QNwbeNTYXgPGgqWIED_wGCZNQktpbYLSuHMN4Q,320
135
+ synapse_sdk/plugins/templates/data_validation/plugin/validate.py.j2,sha256=vT7_RXybQAOX6vnV3oHoagvVTSiFC-SUDroChiOevbE,777
136
+ synapse_sdk/plugins/templates/export/plugin/export.py.j2,sha256=bIn82tAfd6hkwXENgPXDH5U_UlL9sWVmoPpLo6WhnYM,896
137
+ synapse_sdk/plugins/templates/neural_net/plugin/inference.py.j2,sha256=qqtvhIF2s2G_YfmHza8BLv0sdGOK-sIoQXM_jNuMbSY,923
138
+ synapse_sdk/plugins/templates/neural_net/plugin/train.py.j2,sha256=BUwd_cSoHqNSK6tN7qM_xBmqNlJK9tE6vBiapxRMlr0,1001
139
+ synapse_sdk/plugins/templates/post_annotation/plugin/post_annotate.py.j2,sha256=8Gbtvx26dSpwUcWfIdmZpkbQTgTj3UtQPesZkn7pjXY,779
140
+ synapse_sdk/plugins/templates/pre_annotation/plugin/pre_annotate.py.j2,sha256=Ng6xkqC1h5H_ctJECKW_vtpdaawCdh16lHx09FUtN_k,769
141
+ synapse_sdk/plugins/templates/smart_tool/plugin/auto_label.py.j2,sha256=VS6JS5te-Gt7Xk8RlFBa0ZX17wTBdnrMx48EoxkpO68,1069
142
+ synapse_sdk/plugins/templates/upload/plugin/upload.py.j2,sha256=t_7Z_i_KAhLl0qM-WtXwecLFqNqi0X2cOifyjmPLaoU,904
143
+ synapse_sdk/plugins/testing/__init__.py,sha256=gv5gqAw-dBPYnNg066Fxu7NXOMhp8j9cNFZYp4pxvEg,458
144
+ synapse_sdk/plugins/testing/sample_actions.py,sha256=yhOU6-bQdQa0LPCcHc1CbPNAJ7ad_grEsUOOUz5SqJ4,2291
145
+ synapse_sdk/shared/__init__.py,sha256=pWtQ7s5Zxri3ONN8cXwT1N1wL6lwfQqTlBPTfX3Dyuo,501
146
+ synapse_sdk/utils/__init__.py,sha256=L3KbHILrFFdayKrLenYtkeXtZrQ_09c-4gpSC-TuEmY,29
147
+ synapse_sdk/utils/auth.py,sha256=QnmmkOp9ygder6th-4PGr_SXOjp2-rr7SJR9r0JZMU4,1876
148
+ synapse_sdk/utils/network.py,sha256=Ve4YvSvul1dcFQZVU8kJnnxgJifnJYoiAr2m5aUx1Fg,4783
149
+ synapse_sdk/utils/websocket.py,sha256=SYRtTPCFvrgA-VfxG0F-CorhcDcZRpaq6CDgi2q4F00,2749
150
+ synapse_sdk/utils/file/__init__.py,sha256=NmSMGX9cszX9REQ95yg1ZvXoPAyKOyULm5LUzpzI5VU,1333
151
+ synapse_sdk/utils/file/archive.py,sha256=yykAvKNdjiLXLoniEj2P-b2IMAIj7Dsbq5hjYBTbQxc,13156
152
+ synapse_sdk/utils/file/checksum.py,sha256=Xjq3ohKbUD2n19AZGKGr8ozOAzKdF900IB8joUyvZqs,4359
153
+ synapse_sdk/utils/file/download.py,sha256=f6a02GPuaBefTPpFcDf1gbcQOBmS8IEQnFCiyzf1v2I,9120
154
+ synapse_sdk/utils/file/io.py,sha256=q7YXaa3a9nfj9dOP4_StEPwsB7yLZt_32cvIlY6OZdI,3290
155
+ synapse_sdk/utils/file/requirements.py,sha256=0oP7oI4pbJwdU0JyFn8lMrTNaKTMNrFmvdE_2Uqhur8,937
156
+ synapse_sdk/utils/storage/__init__.py,sha256=86nYPEu6wL6YZpM02fh4QAXSrIsWD_0RKVkCMx2fBP4,7186
157
+ synapse_sdk/utils/storage/config.py,sha256=RQiMeaehseV_Tnxa78c9Ha4WJEtm0KaIvPNsqhUemrI,5284
158
+ synapse_sdk/utils/storage/errors.py,sha256=w9J5Rk428WE4mus3HKFJXsgXRGkxAK5zf-IS3QZMV34,1261
159
+ synapse_sdk/utils/storage/registry.py,sha256=zGd8HnRmYsDKhuFIs8Kj6S3MHNUze8zoZN7NWUb_tiU,3524
160
+ synapse_sdk/utils/storage/providers/__init__.py,sha256=4QvIa6w-3JUNALKCTS3M2T0Fu2U8PeFOavqlIoVbJFk,399
161
+ synapse_sdk/utils/storage/providers/base.py,sha256=ga5oSy-h0bSv6Fub5DWrwMCtR8mfNprdJ-_69rCrr0A,1873
162
+ synapse_sdk/utils/storage/providers/gcs.py,sha256=q8X_0ao-F3dt5U4PH1gXtle9GT77_EGOFY4SkXxo9JA,4755
163
+ synapse_sdk/utils/storage/providers/http.py,sha256=e5mTCbvw3_R4oOwJnwlwy2HF6tM3uBtd6QX4klc0m08,7453
164
+ synapse_sdk/utils/storage/providers/local.py,sha256=1mUHpvVdiQCNxI4IWHYfgacVoLTFyMMhPp8MPbiuHNM,3691
165
+ synapse_sdk/utils/storage/providers/s3.py,sha256=ebrVJcxi7ed83elclhduSwqgXdASBwcytS2aV0QxHtU,5083
166
+ synapse_sdk/utils/storage/providers/sftp.py,sha256=FngMFMxQ9j68glc6FXyoLbDMJxyFLOorxygXq4lK9KY,6236
167
+ synapse_sdk-2026.1.1b2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
168
+ synapse_sdk-2026.1.1b2.dist-info/METADATA,sha256=OLozBkw4oL9FU3ujYimskNSDzMKPVgtomnL04IMECeo,27826
169
+ synapse_sdk-2026.1.1b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
170
+ synapse_sdk-2026.1.1b2.dist-info/entry_points.txt,sha256=VNptJoGoNJI8yLXfBmhgUefMsmGI0m3-0YoMvrOgbxo,48
171
+ synapse_sdk-2026.1.1b2.dist-info/top_level.txt,sha256=ytgJMRK1slVOKUpgcw3LEyHHP7S34J6n_gJzdkcSsw8,12
172
+ synapse_sdk-2026.1.1b2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,201 @@
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
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
Binary file
@@ -1,39 +0,0 @@
1
- # English translations for PACKAGE package.
2
- # Copyright (C) 2024 THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # <developer@datamaker.io>, 2024.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: PACKAGE VERSION\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2024-11-27 16:15+0900\n"
11
- "PO-Revision-Date: 2024-11-27 16:17+0900\n"
12
- "Last-Translator: <developer@datamaker.io>\n"
13
- "Language-Team: English\n"
14
- "Language: en\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
-
20
- #: synapse_sdk/utils/debug.py:5
21
- msgid "hello world from sdk"
22
- msgstr "hello world from sdk"
23
-
24
- #: synapse_sdk/plugins/cli/publish.py:34
25
- #, python-brace-format
26
- msgid ""
27
- "Successfully published \"{plugin_release.name}\" ({plugin_release.code}) to "
28
- "synapse backend!"
29
- msgstr ""
30
- "Successfully published \"{plugin_release.name}\" ({plugin_release.code}) to "
31
- "synapse backend!"
32
-
33
- #: synapse_sdk/plugins/cli/__init__.py:15
34
- msgid "Debug mode is \"on\""
35
- msgstr "Debug mode is \"on\""
36
-
37
- #: synapse_sdk/plugins/upload.py:62
38
- msgid "Building {Path(source_path).name}..."
39
- msgstr "Building {Path(source_path).name}..."
Binary file
@@ -1,34 +0,0 @@
1
- # Korean translations for PACKAGE package.
2
- # Copyright (C) 2024 THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # <developer@datamaker.io>, 2024.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: PACKAGE VERSION\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2024-11-27 17:16+0900\n"
11
- "PO-Revision-Date: 2024-11-27 17:16+0900\n"
12
- "Last-Translator: <developer@datamaker.io>\n"
13
- "Language-Team: Korean <translation-team-ko@googlegroups.com>\n"
14
- "Language: ko\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=1; plural=0;\n"
19
-
20
- #: synapse_sdk/utils/debug.py:5
21
- msgid "hello world from sdk"
22
- msgstr ""
23
-
24
- #: synapse_sdk/plugins/cli/publish.py:34
25
- msgid "Successfully published \"{}\" ({}) to synapse backend!"
26
- msgstr "Synapse 백엔드에 \"{}\" ({})를 성공적으로 등록되었습니다!"
27
-
28
- #: synapse_sdk/plugins/cli/__init__.py:17
29
- msgid "Debug mode is \"on\""
30
- msgstr "디버그 모드가 \"켜짐\" 상태입니다"
31
-
32
- #: synapse_sdk/plugins/upload.py:63
33
- msgid "Building {}..."
34
- msgstr "{} 빌드 중..."
@@ -1,10 +0,0 @@
1
- from pathlib import Path
2
-
3
- import click
4
- from cookiecutter.main import cookiecutter
5
-
6
-
7
- @click.command()
8
- def create_plugin():
9
- project_root = Path(__file__).parent.parent
10
- cookiecutter(str(project_root / 'plugins/templates'))
@@ -1,7 +0,0 @@
1
- from synapse_sdk.clients.base import BaseClient
2
-
3
-
4
- class CoreClientMixin(BaseClient):
5
- def health_check(self):
6
- path = 'health/'
7
- return self._get(path)
@@ -1,15 +0,0 @@
1
- from synapse_sdk.clients.base import BaseClient
2
-
3
-
4
- class ServiceClientMixin(BaseClient):
5
- def run_plugin_release(self, code, data):
6
- path = f'plugin_releases/{code}/run/'
7
- return self._post(path, data=data)
8
-
9
- def run_debug_plugin_release(self, data):
10
- path = 'plugin_releases/run_debug/'
11
- return self._post(path, data=data)
12
-
13
- def create_plugin_release(self, data):
14
- path = 'plugin_releases/'
15
- return self._post(path, data=data)
@@ -1,51 +0,0 @@
1
- from multiprocessing import Pool
2
-
3
- from tqdm import tqdm
4
-
5
- from synapse_sdk.clients.base import BaseClient
6
- from synapse_sdk.clients.utils import get_batched_list
7
-
8
-
9
- class DatasetClientMixin(BaseClient):
10
- def list_dataset(self):
11
- path = 'datasets/'
12
- return self._get(path)
13
-
14
- def create_data_file(self, file_path):
15
- path = 'data_files/'
16
- return self._post(path, files={'file': file_path})
17
-
18
- def create_data_units(self, data):
19
- path = 'data_units/'
20
- return self._post(path, data=data)
21
-
22
- def import_dataset(self, dataset_id, dataset, project_id=None, batch_size=1000, process_pool=10):
23
- # TODO validate dataset with schema
24
-
25
- params = [(data, dataset_id) for data in dataset]
26
-
27
- with Pool(processes=process_pool) as pool:
28
- dataset = pool.starmap(self.import_data_file, tqdm(params))
29
-
30
- batches = get_batched_list(dataset, batch_size)
31
-
32
- for batch in tqdm(batches):
33
- data_units = self.create_data_units(batch)
34
-
35
- if project_id:
36
- tasks_data = []
37
- for data, data_unit in zip(batch, data_units):
38
- task_data = {'project': project_id, 'data_unit': data_unit['id']}
39
- if 'ground_truth' in data:
40
- task_data['ground_truth'] = data['ground_truth']
41
-
42
- tasks_data.append(task_data)
43
-
44
- self.create_tasks(tasks_data)
45
-
46
- def import_data_file(self, data, dataset_id):
47
- for name, path in data['files'].items():
48
- data_file = self.create_data_file(path)
49
- data['dataset'] = dataset_id
50
- data['files'][name] = {'checksum': data_file['checksum'], 'path': str(path)}
51
- return data
@@ -1,6 +0,0 @@
1
- from synapse_sdk.clients.ray.core import CoreClientMixin
2
- from synapse_sdk.clients.ray.serve import ServeClientMixin
3
-
4
-
5
- class RayClient(ServeClientMixin, CoreClientMixin):
6
- name = 'Ray'
@@ -1,22 +0,0 @@
1
- from synapse_sdk.clients.base import BaseClient
2
- from synapse_sdk.clients.exceptions import ClientError
3
-
4
-
5
- class CoreClientMixin(BaseClient):
6
- def list_nodes(self, params=None):
7
- path = 'nodes'
8
- response = self._get(path, params=params)
9
- if not response['result']:
10
- raise ClientError(200, response['msg'])
11
- return response['data']['summary']
12
-
13
- def get_node(self, pk, params=None):
14
- path = f'nodes/{pk}'
15
- response = self._get(path, params=params)['detail']
16
-
17
- if not response['result']:
18
- raise ClientError(200, response['msg'])
19
-
20
- if 'agent' not in response['data']:
21
- raise ClientError(404, 'Node Not Found')
22
- return response['data']
@@ -1,20 +0,0 @@
1
- from synapse_sdk.clients.base import BaseClient
2
- from synapse_sdk.clients.exceptions import ClientError
3
-
4
-
5
- class ServeClientMixin(BaseClient):
6
- def list_serve_applications(self, params=None):
7
- path = 'api/serve/applications/'
8
- response = self._get(path, params=params)
9
- for key, item in response['applications'].items():
10
- response['applications'][key]['deployments'] = list(item['deployments'].values())
11
- return list(response['applications'].values())
12
-
13
- def get_serve_application(self, pk, params=None):
14
- path = 'api/serve/applications/'
15
- response = self._get(path, params=params)
16
- try:
17
- response['applications'][pk]['deployments'] = list(response['applications'][pk]['deployments'].values())
18
- return response['applications'][pk]
19
- except KeyError:
20
- raise ClientError(404, 'Serve Application Not Found')
synapse_sdk/i18n.py DELETED
@@ -1,35 +0,0 @@
1
- import gettext as _gettext
2
- import locale
3
- from pathlib import Path
4
-
5
- ASSIGNED_LOCALE = None
6
-
7
-
8
- def set_language(language):
9
- ASSIGNED_LOCALE = language # noqa: F841
10
-
11
-
12
- def get_locale():
13
- if ASSIGNED_LOCALE is not None:
14
- return ASSIGNED_LOCALE
15
-
16
- system_locale, encoding = locale.getlocale()
17
-
18
- if system_locale is None:
19
- system_locale = 'en'
20
-
21
- return system_locale
22
-
23
-
24
- language = get_locale().split('_')[0]
25
-
26
- PACKAGE_DIR = Path(__file__).parent
27
- LOCALE_DIR = PACKAGE_DIR.parent / 'locale'
28
-
29
- translation = _gettext.translation('messages', localedir=LOCALE_DIR, languages=[language], fallback=True)
30
- translation.install()
31
-
32
- gettext = translation.gettext
33
- ngettext = translation.ngettext
34
- pgettext = translation.pgettext
35
- npgettext = translation.npgettext
File without changes