synapse-sdk 1.0.0a20__py3-none-any.whl → 1.0.0a22__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.
- synapse_sdk/clients/backend/__init__.py +8 -1
- synapse_sdk/clients/backend/core.py +32 -0
- synapse_sdk/clients/backend/ml.py +3 -2
- synapse_sdk/clients/base.py +3 -1
- synapse_sdk/plugins/categories/base.py +7 -5
- synapse_sdk/plugins/categories/neural_net/actions/train.py +2 -2
- synapse_sdk/plugins/cli/publish.py +1 -2
- synapse_sdk/plugins/cli/run.py +12 -5
- synapse_sdk/plugins/utils.py +30 -7
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/METADATA +1 -1
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/RECORD +15 -14
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/LICENSE +0 -0
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/WHEEL +0 -0
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/entry_points.txt +0 -0
- {synapse_sdk-1.0.0a20.dist-info → synapse_sdk-1.0.0a22.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
from synapse_sdk.clients.backend.annotation import AnnotationClientMixin
|
|
2
|
+
from synapse_sdk.clients.backend.core import CoreClientMixin
|
|
2
3
|
from synapse_sdk.clients.backend.dataset import DatasetClientMixin
|
|
3
4
|
from synapse_sdk.clients.backend.integration import IntegrationClientMixin
|
|
4
5
|
from synapse_sdk.clients.backend.ml import MLClientMixin
|
|
5
6
|
|
|
6
7
|
|
|
7
|
-
class BackendClient(
|
|
8
|
+
class BackendClient(
|
|
9
|
+
AnnotationClientMixin,
|
|
10
|
+
CoreClientMixin,
|
|
11
|
+
DatasetClientMixin,
|
|
12
|
+
IntegrationClientMixin,
|
|
13
|
+
MLClientMixin,
|
|
14
|
+
):
|
|
8
15
|
name = 'Backend'
|
|
9
16
|
token = None
|
|
10
17
|
tenant = None
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import hashlib
|
|
2
|
+
import os
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
from synapse_sdk.clients.base import BaseClient
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CoreClientMixin(BaseClient):
|
|
9
|
+
def create_chunked_upload(self, file_path):
|
|
10
|
+
def read_file_in_chunks(file_path, chunk_size=1024 * 1024 * 50):
|
|
11
|
+
with open(file_path, 'rb') as file:
|
|
12
|
+
while chunk := file.read(chunk_size):
|
|
13
|
+
yield chunk
|
|
14
|
+
|
|
15
|
+
file_path = Path(file_path)
|
|
16
|
+
size = os.path.getsize(file_path)
|
|
17
|
+
hash_md5 = hashlib.md5()
|
|
18
|
+
|
|
19
|
+
url = 'chunked_upload/'
|
|
20
|
+
offset = 0
|
|
21
|
+
for chunk in read_file_in_chunks(file_path):
|
|
22
|
+
hash_md5.update(chunk)
|
|
23
|
+
data = self._put(
|
|
24
|
+
url,
|
|
25
|
+
data={'filename': file_path.name},
|
|
26
|
+
files={'file': chunk},
|
|
27
|
+
headers={'Content-Range': f'bytes {offset}-{offset + len(chunk) - 1}/{size}'},
|
|
28
|
+
)
|
|
29
|
+
offset = data['offset']
|
|
30
|
+
url = data['url']
|
|
31
|
+
|
|
32
|
+
return self._post(url, data={'md5': hash_md5.hexdigest()})
|
|
@@ -14,8 +14,9 @@ class MLClientMixin(BaseClient):
|
|
|
14
14
|
|
|
15
15
|
def create_model(self, data):
|
|
16
16
|
path = 'models/'
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
file = data.pop('file')
|
|
18
|
+
data['chunked_upload'] = self.create_chunked_upload(file)['id']
|
|
19
|
+
return self._post(path, data=data)
|
|
19
20
|
|
|
20
21
|
def list_ground_truth_events(self, params=None, url_conversion=None, list_all=False):
|
|
21
22
|
path = 'ground_truth_events/'
|
synapse_sdk/clients/base.py
CHANGED
|
@@ -28,11 +28,13 @@ class BaseClient:
|
|
|
28
28
|
def _request(self, method, path, **kwargs):
|
|
29
29
|
url = self._get_url(path)
|
|
30
30
|
headers = self._get_headers()
|
|
31
|
+
headers.update(kwargs.pop('headers', {}))
|
|
31
32
|
|
|
32
33
|
if method in ['post', 'put', 'patch']:
|
|
33
34
|
if kwargs.get('files') is not None:
|
|
34
35
|
for name, file in kwargs['files'].items():
|
|
35
|
-
|
|
36
|
+
if isinstance(file, (str, Path)):
|
|
37
|
+
kwargs['files'][name] = Path(str(file)).open(mode='rb')
|
|
36
38
|
for name, value in kwargs['data'].items():
|
|
37
39
|
if isinstance(value, dict):
|
|
38
40
|
kwargs['data'][name] = json.dumps(value)
|
|
@@ -30,6 +30,7 @@ class Action:
|
|
|
30
30
|
plugin_config = None
|
|
31
31
|
plugin_release = None
|
|
32
32
|
config = None
|
|
33
|
+
requirements = None
|
|
33
34
|
job_id = None
|
|
34
35
|
direct = None
|
|
35
36
|
debug = None
|
|
@@ -48,11 +49,12 @@ class Action:
|
|
|
48
49
|
'SYNAPSE_PLUGIN_RUN_TENANT',
|
|
49
50
|
]
|
|
50
51
|
|
|
51
|
-
def __init__(self, params, plugin_config, envs=None, job_id=None, direct=False, debug=False):
|
|
52
|
+
def __init__(self, params, plugin_config, requirements=None, envs=None, job_id=None, direct=False, debug=False):
|
|
52
53
|
self.params = params
|
|
53
54
|
self.plugin_config = plugin_config
|
|
54
55
|
self.plugin_release = PluginRelease(config=plugin_config)
|
|
55
56
|
self.config = self.plugin_release.get_action_config(self.name)
|
|
57
|
+
self.requirements = requirements
|
|
56
58
|
self.job_id = job_id
|
|
57
59
|
self.direct = direct
|
|
58
60
|
self.debug = debug
|
|
@@ -117,10 +119,10 @@ class Action:
|
|
|
117
119
|
return {env: os.environ[env] for env in self.REQUIRED_ENVS if env in os.environ}
|
|
118
120
|
|
|
119
121
|
def get_runtime_env(self):
|
|
120
|
-
runtime_env = {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
runtime_env = {'pip': [], 'working_dir': self.plugin_url}
|
|
123
|
+
|
|
124
|
+
if self.requirements:
|
|
125
|
+
runtime_env['pip'] += self.requirements
|
|
124
126
|
|
|
125
127
|
if self.debug:
|
|
126
128
|
runtime_env['pip'] += self.debug_modules
|
|
@@ -17,8 +17,8 @@ from synapse_sdk.utils.pydantic.validators import non_blank
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class TrainRun(Run):
|
|
20
|
-
def log_metric(self, key, value, **metrics):
|
|
21
|
-
self.log('metric', {'key': key, 'value': value, 'metrics': metrics})
|
|
20
|
+
def log_metric(self, category, key, value, **metrics):
|
|
21
|
+
self.log('metric', {'category': category, 'key': key, 'value': value, 'metrics': metrics})
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
class Hyperparameter(BaseModel):
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import json
|
|
2
1
|
from pathlib import Path
|
|
3
2
|
|
|
4
3
|
import click
|
|
@@ -27,7 +26,7 @@ def publish(ctx, host, user_token, tenant, debug_modules):
|
|
|
27
26
|
data = {'plugin': plugin_release.plugin, 'file': str(archive_path), 'debug': debug}
|
|
28
27
|
if debug:
|
|
29
28
|
modules = debug_modules.split(',') if debug_modules else []
|
|
30
|
-
data['
|
|
29
|
+
data['meta'] = {'modules': modules}
|
|
31
30
|
|
|
32
31
|
client = BackendClient(host, user_token, tenant=tenant)
|
|
33
32
|
client.create_plugin_release(data)
|
synapse_sdk/plugins/cli/run.py
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import os
|
|
2
|
+
from pathlib import Path
|
|
2
3
|
|
|
3
4
|
import click
|
|
4
5
|
|
|
5
6
|
from synapse_sdk.clients.agent import AgentClient
|
|
6
7
|
from synapse_sdk.clients.backend import BackendClient
|
|
7
8
|
from synapse_sdk.plugins.models import PluginRelease
|
|
8
|
-
from synapse_sdk.plugins.utils import
|
|
9
|
+
from synapse_sdk.plugins.utils import read_requirements, run_plugin
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
@click.command()
|
|
@@ -33,8 +34,8 @@ def run(ctx, action, params, job_id, direct, run_by, agent_host, agent_token, ho
|
|
|
33
34
|
|
|
34
35
|
|
|
35
36
|
def run_by_script(action, params, job_id, direct, debug):
|
|
36
|
-
|
|
37
|
-
result = action
|
|
37
|
+
requirements = read_requirements('./requirements.txt')
|
|
38
|
+
result = run_plugin(action, params, requirements=requirements, debug=debug, job_id=job_id, direct=direct)
|
|
38
39
|
|
|
39
40
|
if debug:
|
|
40
41
|
click.echo(result)
|
|
@@ -43,17 +44,23 @@ def run_by_script(action, params, job_id, direct, debug):
|
|
|
43
44
|
def run_by_agent(action, params, job_id, agent_host, agent_token, user_token, tenant, debug):
|
|
44
45
|
client = AgentClient(agent_host, agent_token, user_token, tenant)
|
|
45
46
|
data = {'action': action, 'params': params}
|
|
47
|
+
plugin_path = os.getcwd()
|
|
48
|
+
requirements = read_requirements(Path(plugin_path) / 'requirements.txt')
|
|
49
|
+
if requirements:
|
|
50
|
+
data = {'requirements': requirements}
|
|
51
|
+
|
|
46
52
|
if job_id:
|
|
47
53
|
data['job_id'] = job_id
|
|
54
|
+
|
|
48
55
|
if debug:
|
|
49
56
|
data.update({
|
|
50
|
-
'plugin_path':
|
|
57
|
+
'plugin_path': plugin_path,
|
|
51
58
|
'modules': os.getenv('SYNAPSE_DEBUG_MODULES', '').split(','),
|
|
52
59
|
})
|
|
53
60
|
result = client.run_debug_plugin_release(data=data)
|
|
54
61
|
else:
|
|
55
62
|
plugin_release = PluginRelease()
|
|
56
|
-
result = client.run_plugin_release(
|
|
63
|
+
result = client.run_plugin_release(plugin_release.code, data=data)
|
|
57
64
|
|
|
58
65
|
click.echo(result)
|
|
59
66
|
|
synapse_sdk/plugins/utils.py
CHANGED
|
@@ -52,17 +52,37 @@ def read_plugin_config(plugin_path=None):
|
|
|
52
52
|
return get_dict_from_file(config_path)
|
|
53
53
|
|
|
54
54
|
|
|
55
|
-
def
|
|
55
|
+
def read_requirements(file_path):
|
|
56
|
+
file_path = Path(file_path)
|
|
57
|
+
if not file_path.exists():
|
|
58
|
+
return None
|
|
59
|
+
|
|
60
|
+
requirements = []
|
|
61
|
+
for line in file_path.read_text().splitlines():
|
|
62
|
+
stripped_line = line.strip()
|
|
63
|
+
if stripped_line and not stripped_line.startswith('#'):
|
|
64
|
+
requirements.append(stripped_line)
|
|
65
|
+
return requirements
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def run_plugin(
|
|
69
|
+
action,
|
|
70
|
+
params,
|
|
71
|
+
plugin_config=None,
|
|
72
|
+
plugin_path=None,
|
|
73
|
+
modules=None,
|
|
74
|
+
requirements=None,
|
|
75
|
+
envs=None,
|
|
76
|
+
debug=False,
|
|
77
|
+
**kwargs,
|
|
78
|
+
):
|
|
56
79
|
from synapse_sdk.plugins.models import PluginRelease
|
|
57
80
|
|
|
58
81
|
if not envs:
|
|
59
82
|
envs = {}
|
|
60
83
|
|
|
61
84
|
if debug:
|
|
62
|
-
if
|
|
63
|
-
raise ActionError({'plugin_path': _('디버그 모드에서는 plugin_path는 필수입니다.')})
|
|
64
|
-
|
|
65
|
-
if plugin_path.startswith('http'):
|
|
85
|
+
if plugin_path and plugin_path.startswith('http'):
|
|
66
86
|
if not plugin_config:
|
|
67
87
|
raise ActionError({'config': _('"plugin_path"가 url인 경우에는 "config"가 필수입니다.')})
|
|
68
88
|
plugin_release = PluginRelease(config=plugin_config)
|
|
@@ -73,9 +93,12 @@ def run_plugin(action, params, plugin_config=None, plugin_path=None, modules=Non
|
|
|
73
93
|
if action not in plugin_release.actions:
|
|
74
94
|
raise ActionError({'action': _('해당 액션은 존재하지 않습니다.')})
|
|
75
95
|
|
|
76
|
-
|
|
96
|
+
if plugin_path:
|
|
97
|
+
envs['SYNAPSE_DEBUG_PLUGIN_PATH'] = plugin_path
|
|
98
|
+
|
|
77
99
|
if modules:
|
|
78
100
|
envs['SYNAPSE_DEBUG_MODULES'] = ','.join(modules)
|
|
101
|
+
|
|
79
102
|
else:
|
|
80
103
|
if plugin_config is None:
|
|
81
104
|
raise ActionError({'config': _('플러그인 설정은 필수입니다.')})
|
|
@@ -84,9 +107,9 @@ def run_plugin(action, params, plugin_config=None, plugin_path=None, modules=Non
|
|
|
84
107
|
action,
|
|
85
108
|
params,
|
|
86
109
|
config=plugin_config,
|
|
110
|
+
requirements=requirements,
|
|
87
111
|
envs=envs,
|
|
88
112
|
debug=debug,
|
|
89
113
|
**kwargs,
|
|
90
114
|
)
|
|
91
|
-
|
|
92
115
|
return action.run_action()
|
|
@@ -8,18 +8,19 @@ synapse_sdk/loggers.py,sha256=RsDDOiOeUCih1XOkWQJseYdYCX_wt50AZJRe6aPf96Q,4004
|
|
|
8
8
|
synapse_sdk/cli/__init__.py,sha256=WmYGW1qZEXXIGJe3SGr8QjOStY4svuZKK1Lp_aPvtPs,140
|
|
9
9
|
synapse_sdk/cli/create_plugin.py,sha256=egbW_92WwxfHz50Gy4znX5Bf5fxDdQj3GFyd0l3Y3SY,228
|
|
10
10
|
synapse_sdk/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
synapse_sdk/clients/base.py,sha256=
|
|
11
|
+
synapse_sdk/clients/base.py,sha256=Yo_WUHNQ2NgNe3sBav0cM_armOdBz34o7fn3lbtrHO0,3462
|
|
12
12
|
synapse_sdk/clients/exceptions.py,sha256=ylv7x10eOp4aA3a48jwonnvqvkiYwzJYXjkVkRTAjwk,220
|
|
13
13
|
synapse_sdk/clients/utils.py,sha256=8pPJTdzHiRPSbZMoQYHAgR2BAMO6u_R_jMV6a2p34iQ,392
|
|
14
14
|
synapse_sdk/clients/agent/__init__.py,sha256=Pz8_iTbIbnb7ywGJ3feqoZVmO2I3mEbwpWsISIxh0BU,1968
|
|
15
15
|
synapse_sdk/clients/agent/core.py,sha256=YicfkO0YvjDDOt1jNWoZ0mokrh8xxKibBL4qF5yOjKs,169
|
|
16
16
|
synapse_sdk/clients/agent/ray.py,sha256=JrwLyVOUDG2yYsbPrxyUtWbM-FWp9B6Bl_GdDby0rt8,1559
|
|
17
17
|
synapse_sdk/clients/agent/service.py,sha256=s7KuPK_DB1nr2VHrigttV1WyFonaGHNrPvU8loRxHcE,478
|
|
18
|
-
synapse_sdk/clients/backend/__init__.py,sha256=
|
|
18
|
+
synapse_sdk/clients/backend/__init__.py,sha256=aozhPhvRTPHz1P90wxEay07B-Ct4vj_yTw5H9_PJEBE,1105
|
|
19
19
|
synapse_sdk/clients/backend/annotation.py,sha256=eZc5EidgR_RfMGwvv1r1_mLkPdRd8e52c4zuuMjMX34,979
|
|
20
|
+
synapse_sdk/clients/backend/core.py,sha256=5XAOdo6JZ0drfk-FMPJ96SeTd9oja-VnTwzGXdvK7Bg,1027
|
|
20
21
|
synapse_sdk/clients/backend/dataset.py,sha256=a_svyCKgzF7N99l8V4u4wXD8JxiGuLW9z2EBinnz7b8,1738
|
|
21
22
|
synapse_sdk/clients/backend/integration.py,sha256=Jg_8fEmbrgYXfZZcG8cDtLxR6ugPmnbNhPDyRu_Uib0,2160
|
|
22
|
-
synapse_sdk/clients/backend/ml.py,sha256=
|
|
23
|
+
synapse_sdk/clients/backend/ml.py,sha256=jlkqS9pI0S0Ubq4pWVeaaaPk-E0J-cZg5zkSX7GuQ_o,1063
|
|
23
24
|
synapse_sdk/clients/ray/__init__.py,sha256=9ZSPXVVxlJ8Wp8ku7l021ENtPjVrGgQDgqifkkVAXgM,187
|
|
24
25
|
synapse_sdk/clients/ray/core.py,sha256=a4wyCocAma2HAm-BHlbZnoVbpfdR-Aad2FM0z6vPFvw,731
|
|
25
26
|
synapse_sdk/clients/ray/serve.py,sha256=rbCpXZYWf0oP8XJ9faa9QFNPYU7h8dltIG8xn9ZconY,907
|
|
@@ -28,9 +29,9 @@ synapse_sdk/plugins/enums.py,sha256=s59P6Oz2WAK9IX-kLVhNOvNKYJifKlWBhPpZbc9-ttE,
|
|
|
28
29
|
synapse_sdk/plugins/exceptions.py,sha256=Qs7qODp_RRLO9y2otU2T4ryj5LFwIZODvSIXkAh91u0,691
|
|
29
30
|
synapse_sdk/plugins/models.py,sha256=S0oC2DXTqO9qH1BTNKVYRflGKSMU_8LpKVmCIEpJxVA,3562
|
|
30
31
|
synapse_sdk/plugins/upload.py,sha256=VJOotYMayylOH0lNoAGeGHRkLdhP7jnC_A0rFQMvQpQ,3228
|
|
31
|
-
synapse_sdk/plugins/utils.py,sha256=
|
|
32
|
+
synapse_sdk/plugins/utils.py,sha256=4_K6jIl0WrsXOEhFp94faMOriSsddOhIiaXcawYYUUA,3300
|
|
32
33
|
synapse_sdk/plugins/categories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
synapse_sdk/plugins/categories/base.py,sha256=
|
|
34
|
+
synapse_sdk/plugins/categories/base.py,sha256=3EkcKGqLwpRzeeH8sH-gJ0AgB-Zhh1UrNR9CrxEOwLo,8317
|
|
34
35
|
synapse_sdk/plugins/categories/decorators.py,sha256=Gw6T-UHwpCKrSt596X-g2sZbY_Z1zbbogowClj7Pr5Q,518
|
|
35
36
|
synapse_sdk/plugins/categories/registry.py,sha256=KdQR8SUlLT-3kgYzDNWawS1uJnAhrcw2j4zFaTpilRs,636
|
|
36
37
|
synapse_sdk/plugins/categories/templates.py,sha256=FF5FerhkZMeW1YcKLY5cylC0SkWSYdJODA_Qcm4OGYQ,887
|
|
@@ -51,7 +52,7 @@ synapse_sdk/plugins/categories/neural_net/actions/__init__.py,sha256=47DEQpj8HBS
|
|
|
51
52
|
synapse_sdk/plugins/categories/neural_net/actions/deployment.py,sha256=i3X2CCWADNAwoDhX-6XTZFEu8MekjJoLuqEojrx1vIc,1730
|
|
52
53
|
synapse_sdk/plugins/categories/neural_net/actions/inference.py,sha256=i18bDDjkuF9V8nxxW-T_umNIOD-Jnq_MMjIjZc6W8n8,645
|
|
53
54
|
synapse_sdk/plugins/categories/neural_net/actions/test.py,sha256=JY25eg-Fo6WbgtMkGoo_qNqoaZkp3AQNEypJmeGzEog,320
|
|
54
|
-
synapse_sdk/plugins/categories/neural_net/actions/train.py,sha256=
|
|
55
|
+
synapse_sdk/plugins/categories/neural_net/actions/train.py,sha256=4zq2ryWjqDa6MyI2BGe3sAofMh2NeY3XAo-1gEFXBs4,5145
|
|
55
56
|
synapse_sdk/plugins/categories/neural_net/templates/config.yaml,sha256=dXKB1hO53hDZB73xnxLVCNQl8Sm7svMmVmuMrOCQmEU,343
|
|
56
57
|
synapse_sdk/plugins/categories/neural_net/templates/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
58
|
synapse_sdk/plugins/categories/neural_net/templates/plugin/inference.py,sha256=InfqKWJYi6sqiUnfPKHC5KYGhxckDaWZNQ202u-uVP4,366
|
|
@@ -76,8 +77,8 @@ synapse_sdk/plugins/categories/smart_tool/templates/config.yaml,sha256=7bvb4M1PL
|
|
|
76
77
|
synapse_sdk/plugins/categories/smart_tool/templates/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
78
|
synapse_sdk/plugins/categories/smart_tool/templates/plugin/auto_label.py,sha256=eevNg0nOcYFR4z_L_R-sCvVOYoLWSAH1jwDkAf3YCjY,320
|
|
78
79
|
synapse_sdk/plugins/cli/__init__.py,sha256=LPtUO0jqkhKq6xR1grpse7da2R6OoT_BeDyCNyUY0T4,380
|
|
79
|
-
synapse_sdk/plugins/cli/publish.py,sha256=
|
|
80
|
-
synapse_sdk/plugins/cli/run.py,sha256=
|
|
80
|
+
synapse_sdk/plugins/cli/publish.py,sha256=sIl1wiuSC3lAUpE3rOF4UDKDy2G5EVLlelMjk2aT05g,1221
|
|
81
|
+
synapse_sdk/plugins/cli/run.py,sha256=xz5LRm3zh8Y9DMjw5FFRFVRWSCWtYfZJskfCmrPikaQ,2598
|
|
81
82
|
synapse_sdk/plugins/templates/cookiecutter.json,sha256=NxOWk9A_v1pO0Ny4IYT9Cj5iiJ16--cIQrGC67QdR0I,396
|
|
82
83
|
synapse_sdk/plugins/templates/hooks/post_gen_project.py,sha256=jqlYkY1O2TxIR-Vh3gnwILYy8k-D39Xx66d2KNQVMCs,147
|
|
83
84
|
synapse_sdk/plugins/templates/hooks/pre_prompt.py,sha256=aOAMM623s0sKFGjTZaotAOYFvsNMxeii4tPyhOAFKVE,539
|
|
@@ -103,9 +104,9 @@ synapse_sdk/utils/pydantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
103
104
|
synapse_sdk/utils/pydantic/config.py,sha256=1vYOcUI35GslfD1rrqhFkNXXJOXt4IDqOPSx9VWGfNE,123
|
|
104
105
|
synapse_sdk/utils/pydantic/errors.py,sha256=0v0T12eQBr1KrFiEOBu6KMaPK4aPEGEC6etPJGoR5b4,1061
|
|
105
106
|
synapse_sdk/utils/pydantic/validators.py,sha256=G47P8ObPhsePmd_QZDK8EdPnik2CbaYzr_N4Z6En8dc,193
|
|
106
|
-
synapse_sdk-1.0.
|
|
107
|
-
synapse_sdk-1.0.
|
|
108
|
-
synapse_sdk-1.0.
|
|
109
|
-
synapse_sdk-1.0.
|
|
110
|
-
synapse_sdk-1.0.
|
|
111
|
-
synapse_sdk-1.0.
|
|
107
|
+
synapse_sdk-1.0.0a22.dist-info/LICENSE,sha256=bKzmC5YAg4V1Fhl8OO_tqY8j62hgdncAkN7VrdjmrGk,1101
|
|
108
|
+
synapse_sdk-1.0.0a22.dist-info/METADATA,sha256=amlLIpkW9kqYRzaJueKGATMK0jY0WG4-2SfZP6cre4I,1049
|
|
109
|
+
synapse_sdk-1.0.0a22.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
110
|
+
synapse_sdk-1.0.0a22.dist-info/entry_points.txt,sha256=VNptJoGoNJI8yLXfBmhgUefMsmGI0m3-0YoMvrOgbxo,48
|
|
111
|
+
synapse_sdk-1.0.0a22.dist-info/top_level.txt,sha256=ytgJMRK1slVOKUpgcw3LEyHHP7S34J6n_gJzdkcSsw8,12
|
|
112
|
+
synapse_sdk-1.0.0a22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|