thestage 0.5.38__py3-none-any.whl → 0.5.40__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 (37) hide show
  1. thestage/.env +3 -4
  2. thestage/__init__.py +1 -1
  3. thestage/controllers/config_controller.py +3 -4
  4. thestage/controllers/container_controller.py +12 -16
  5. thestage/controllers/project_controller.py +10 -3
  6. thestage/controllers/utils_controller.py +2 -3
  7. thestage/entities/file_item.py +27 -0
  8. thestage/exceptions/file_system_exception.py +6 -0
  9. thestage/helpers/error_handler.py +2 -2
  10. thestage/helpers/logger/app_logger.py +3 -4
  11. thestage/services/abstract_service.py +1 -2
  12. thestage/services/app_config_service.py +2 -3
  13. thestage/services/clients/.DS_Store +0 -0
  14. thestage/services/clients/git/git_client.py +3 -3
  15. thestage/services/clients/thestage_api/api_client.py +3 -61
  16. thestage/services/clients/thestage_api/core/api_client_abstract.py +91 -0
  17. thestage/services/clients/thestage_api/core/api_client_core.py +25 -0
  18. thestage/services/clients/thestage_api/core/http_client_exception.py +12 -0
  19. thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py +1 -1
  20. thestage/services/clients/thestage_api/dtos/project_response.py +0 -2
  21. thestage/services/clients/thestage_api/dtos/sftp_path_helper.py +3 -2
  22. thestage/services/config_provider/config_provider.py +98 -44
  23. thestage/services/connect/connect_service.py +1 -1
  24. thestage/services/container/container_service.py +2 -8
  25. thestage/services/core_files/config_entity.py +25 -0
  26. thestage/services/filesystem_service.py +115 -0
  27. thestage/services/instance/instance_service.py +1 -2
  28. thestage/services/logging/logging_service.py +76 -95
  29. thestage/services/project/project_service.py +9 -7
  30. thestage/services/remote_server_service.py +3 -3
  31. thestage/services/service_factory.py +1 -2
  32. thestage/services/validation_service.py +26 -10
  33. {thestage-0.5.38.dist-info → thestage-0.5.40.dist-info}/METADATA +1 -2
  34. {thestage-0.5.38.dist-info → thestage-0.5.40.dist-info}/RECORD +37 -29
  35. {thestage-0.5.38.dist-info → thestage-0.5.40.dist-info}/WHEEL +1 -1
  36. {thestage-0.5.38.dist-info → thestage-0.5.40.dist-info}/LICENSE.txt +0 -0
  37. {thestage-0.5.38.dist-info → thestage-0.5.40.dist-info}/entry_points.txt +0 -0
@@ -11,10 +11,9 @@ import click
11
11
  import typer
12
12
  from git import Commit
13
13
  from tabulate import tabulate
14
- from thestage_core.entities.config_entity import ConfigEntity
15
- from thestage_core.exceptions.http_error_exception import HttpClientException
16
- from thestage_core.services.filesystem_service import FileSystemServiceCore
17
14
 
15
+ from thestage.services.clients.thestage_api.core.http_client_exception import HttpClientException
16
+ from thestage.services.core_files.config_entity import ConfigEntity
18
17
  from thestage.color_scheme.color_scheme import ColorScheme
19
18
  from thestage.entities.enums.yes_no_response import YesOrNoResponse
20
19
  from thestage.exceptions.git_access_exception import GitAccessException
@@ -37,6 +36,7 @@ from thestage.services.clients.thestage_api.dtos.project_controller.project_star
37
36
  ProjectStartInferenceSimulatorResponse
38
37
  from thestage.services.clients.thestage_api.dtos.project_response import ProjectDto
39
38
  from thestage.services.clients.thestage_api.dtos.task_controller.task_view_response import TaskViewResponse
39
+ from thestage.services.filesystem_service import FileSystemServiceCore
40
40
  from thestage.services.project.dto.inference_simulator_dto import InferenceSimulatorDto
41
41
  from thestage.services.project.dto.inference_simulator_model_dto import InferenceSimulatorModelDto
42
42
  from thestage.services.task.dto.task_dto import TaskDto
@@ -367,11 +367,13 @@ class ProjectService(AbstractService):
367
367
  commit = self.__git_local_client.get_current_commit(path=config.runtime.working_directory)
368
368
  if commit and isinstance(commit, Commit):
369
369
  commit_hash = commit.hexsha
370
- task_title = commit.message.strip()
370
+ if not task_title:
371
+ task_title = commit.message.strip()
371
372
  else: # if commit_hash is defined
372
- commit = self.__git_local_client.get_commit_by_hash(path=config.runtime.working_directory, commit_hash=commit_hash)
373
- if commit and isinstance(commit, Commit):
374
- task_title = commit.message.strip()
373
+ if not task_title:
374
+ commit = self.__git_local_client.get_commit_by_hash(path=config.runtime.working_directory, commit_hash=commit_hash)
375
+ if commit and isinstance(commit, Commit):
376
+ task_title = commit.message.strip()
375
377
 
376
378
  if not task_title: # should not happen but maybe git allows some kind of empty messages
377
379
  task_title = f'Task_{commit_hash}'
@@ -11,10 +11,9 @@ from click import Abort
11
11
  from paramiko.client import SSHClient
12
12
  from paramiko.pkey import PKey
13
13
  from paramiko.sftp_client import SFTPClient
14
- from thestage_core.entities.config_entity import ConfigEntity
15
- from thestage_core.entities.file_item import FileItemEntity
16
- from thestage_core.services.filesystem_service import FileSystemServiceCore
17
14
 
15
+ from thestage.entities.file_item import FileItemEntity
16
+ from thestage.services.core_files.config_entity import ConfigEntity
18
17
  from thestage.exceptions.remote_server_exception import RemoteServerException
19
18
  from thestage.helpers.logger.app_logger import app_logger
20
19
  from thestage.entities.enums.shell_type import ShellType
@@ -22,6 +21,7 @@ from thestage.helpers.ssh_util import parse_private_key
22
21
  from thestage.i18n.translation import __
23
22
  from thestage.services.clients.thestage_api.dtos.sftp_path_helper import SftpFileItemEntity
24
23
  from thestage.services.config_provider.config_provider import ConfigProvider
24
+ from thestage.services.filesystem_service import FileSystemServiceCore
25
25
 
26
26
  old_value: int = 0
27
27
 
@@ -1,8 +1,7 @@
1
1
  from typing import Optional
2
2
 
3
- from thestage_core.services.filesystem_service import FileSystemServiceCore
4
-
5
3
  from thestage.services.connect.connect_service import ConnectService
4
+ from thestage.services.filesystem_service import FileSystemServiceCore
6
5
  from thestage.services.logging.logging_service import LoggingService
7
6
  from thestage.services.project.project_service import ProjectService
8
7
  from thestage.services.remote_server_service import RemoteServerService
@@ -1,15 +1,12 @@
1
- from typing import Dict, Optional
2
-
3
1
  import typer
4
- from thestage_core.entities.config_entity import ConfigEntity, MainConfigEntity
5
- from thestage_core.services.validation_service import ValidationServiceCore
6
2
 
7
3
  from thestage.i18n.translation import __
8
4
  from thestage.services.config_provider.config_provider import ConfigProvider
9
5
  from thestage.services.clients.thestage_api.api_client import TheStageApiClient
6
+ from thestage.services.core_files.config_entity import ConfigEntity
10
7
 
11
8
 
12
- class ValidationService(ValidationServiceCore):
9
+ class ValidationService:
13
10
  _thestage_api_client: TheStageApiClient = None
14
11
 
15
12
  def __init__(
@@ -17,10 +14,9 @@ class ValidationService(ValidationServiceCore):
17
14
  thestage_api_client: TheStageApiClient,
18
15
  config_provider: ConfigProvider,
19
16
  ):
20
- super(ValidationService, self).__init__(
21
- thestage_api_client=thestage_api_client,
22
- config_provider=config_provider,
23
- )
17
+ self._thestage_api_client = thestage_api_client
18
+ self._config_provider = config_provider
19
+
24
20
 
25
21
  def check_token(
26
22
  self,
@@ -36,7 +32,9 @@ class ValidationService(ValidationServiceCore):
36
32
  )
37
33
 
38
34
  # TODO this fails with 503 error - AttributeError("'bytes' object has no attribute 'text'") from _parse_api_response method in core
39
- is_valid = self.validate_token(token,)
35
+ is_valid: bool = False
36
+ if token:
37
+ is_valid = self._thestage_api_client.validate_token(token=token)
40
38
  if not is_valid:
41
39
  typer.echo(__(
42
40
  'API token is invalid: generate API token using TheStage AI WebApp'
@@ -44,3 +42,21 @@ class ValidationService(ValidationServiceCore):
44
42
  raise typer.Exit(1)
45
43
 
46
44
  config.main.thestage_auth_token = token
45
+
46
+
47
+ @staticmethod
48
+ def is_present_token(config: ConfigEntity) -> bool:
49
+ present_token = True
50
+ if not config:
51
+ present_token = False
52
+ else:
53
+ if not config.main.thestage_auth_token:
54
+ present_token = False
55
+
56
+ if config.start_on_daemon:
57
+ if config.daemon and config.daemon.daemon_token:
58
+ present_token = True
59
+ else:
60
+ present_token = False
61
+
62
+ return present_token
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: thestage
3
- Version: 0.5.38
3
+ Version: 0.5.40
4
4
  Summary:
5
5
  Author: TheStage AI team
6
6
  Author-email: hello@thestage.ai
@@ -20,7 +20,6 @@ Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
20
20
  Requires-Dist: python-gettext-translations (>=1.1.0,<2.0.0)
21
21
  Requires-Dist: requests (>=2.31.0,<3.0.0)
22
22
  Requires-Dist: tabulate (>=0.9.0,<0.10.0)
23
- Requires-Dist: thestage-core (==0.0.16)
24
23
  Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
25
24
  Description-Content-Type: text/markdown
26
25
 
@@ -1,16 +1,16 @@
1
- thestage/.env,sha256=e0VVlgIiJ9t4WkAN89-LEhNoNvuUpV8_dtOrK2itceo,204
2
- thestage/__init__.py,sha256=4lvDPyXdqcfjRSHtVEx3UV0ZcUnvMXHqjYpF8GZl50g,65
1
+ thestage/.env,sha256=xWuR3yPUo1cjCJ3gDt16DvCfaeHHwzN2flrH-TUpmiQ,177
2
+ thestage/__init__.py,sha256=Ast6stgToousSfS5GzGvIjwCvNHBW6PFhctj0NqduJc,65
3
3
  thestage/__main__.py,sha256=4ObdWrDRaIASaR06IxtFSsoMu58eyL0MnD64habvPj8,101
4
4
  thestage/color_scheme/color_scheme.py,sha256=jzdRCX0hi_XStXi4kvPHVItKlTm7dsD3fHIdeRQLeKw,87
5
5
  thestage/config/__init__.py,sha256=RNobilYVK1WAM1utcQ8ZuATKc9Zh9M9BAjCLZTnR_TA,428
6
6
  thestage/config/env_base.py,sha256=RNBQ17yk1ieu1kdUlM7Qe7mDCoxstgGUwwhe265o4dQ,367
7
7
  thestage/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  thestage/controllers/base_controller.py,sha256=lX0XsBc7ZEPD_I56cN8IBAVuWGIkOkr7JHvist3_FEM,2135
9
- thestage/controllers/config_controller.py,sha256=J08JI56Th1_vuJ71MjgjKnkgJTLoH3mlGtFrDY1oePU,5333
10
- thestage/controllers/container_controller.py,sha256=QNJbrZMWoOnhufnQNg5gg2fDfo1oVtAWFJTjPo3t-Y0,15445
9
+ thestage/controllers/config_controller.py,sha256=9_IvRO4ag9IsKAIgnNB5Vt9CeTVRpYrxnGR80iDeQ9w,5251
10
+ thestage/controllers/container_controller.py,sha256=C3WC-Ypeg-vpC8LyCcPZVszbiaDYf2aQzTxYC2PPG8g,15210
11
11
  thestage/controllers/instance_controller.py,sha256=pFhkO7U2Ta0_1dzskEj8hbE7Izw_7I4SDbq5O5-bfIY,9757
12
- thestage/controllers/project_controller.py,sha256=ELEQtWcesiQsJd5h3LjxEvLMKJ0VaX-0tRScSFy4-94,32295
13
- thestage/controllers/utils_controller.py,sha256=y_4QnjUtLkWG_M_WCpQSzX15kDM92JYFku-4FCmYBXU,1032
12
+ thestage/controllers/project_controller.py,sha256=M15b-VhThEhI1eOTX7r3njFnHAWK-tcLc23etOOKTj0,32527
13
+ thestage/controllers/utils_controller.py,sha256=FV35yte7jTZRzy2DaL3OZCNzmlVrsNKxksC8P0FD7hM,1030
14
14
  thestage/debug_main.dist.py,sha256=UPIJ58yf-6FtXZj-FLAwxi7HononseuCYm9xb5KlxTs,783
15
15
  thestage/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  thestage/entities/container.py,sha256=OxOuXnTs4DITNpcrcUkuSBl4M5S4lGY_DTbhy8WsqUg,894
@@ -19,6 +19,7 @@ thestage/entities/enums/order_direction_type.py,sha256=zC9-FLhn8-6NVmSlgeKXKBnVJ
19
19
  thestage/entities/enums/shell_type.py,sha256=-XcPiI3psjeIzd0VXWHdca5Ttgbu9M5oQPeZUZLJRMc,118
20
20
  thestage/entities/enums/tail_output_type.py,sha256=6S55VRRosrI3yZW8XeAGm4u12H4haeiBRvoaExUCWcU,84
21
21
  thestage/entities/enums/yes_no_response.py,sha256=PXXkB7KMB-XCHvKOBRuX6NRKyq8UW0G228OICRr2ZTk,86
22
+ thestage/entities/file_item.py,sha256=hxUbdne6AYFHJfuQ8l0XQO86IuC8Pyx_OrPw_0lhN_o,828
22
23
  thestage/entities/project_inference_simulator.py,sha256=J7Kq3Stb9EElaa8LYLo5kzLLAzgG0ibg4u1iNo0ZUns,597
23
24
  thestage/entities/project_inference_simulator_model.py,sha256=_xfjaaCSUfVKFQLlsyMEvD4oboKAzIOl6YoMyS59XyQ,546
24
25
  thestage/entities/project_task.py,sha256=7uewPIC_HF32OviQHU7uyJ8KokCuK5OjB47r-ltdpyI,672
@@ -29,14 +30,15 @@ thestage/exceptions/auth_exception.py,sha256=HZeiF3aocqukmClUfIDCk5izb4tpG4KEbhy
29
30
  thestage/exceptions/base_exception.py,sha256=ekov63Q0OZLeLOu6bhHN9KLo8pPn0XLCMZwZrVULhDw,282
30
31
  thestage/exceptions/business_logic_exception.py,sha256=vNiSq9hUjrB0gx1umFcq4Eft99Cg59wCayOYSazT_oc,232
31
32
  thestage/exceptions/config_exception.py,sha256=c2V8ccEoPWOV5fd_rSgaj9HB4rQfj6DOdnALEq_U8-Q,218
33
+ thestage/exceptions/file_system_exception.py,sha256=OiBCtjzV1ToXfn5HtmXv9Ihp6uDcKNSyKzQxut-xhQQ,226
32
34
  thestage/exceptions/git_access_exception.py,sha256=ZyB5qrz6fok1jOEKtt3PXP9vq3vOmKOK2OZcFztH9gM,465
33
35
  thestage/exceptions/http_error_exception.py,sha256=24R8KYC5nU8T1zDE9xtThM9SAA3PGSgv4zPk4Gn5eWI,405
34
36
  thestage/exceptions/remote_server_exception.py,sha256=Z1R5Wjw3w7VdqURhjidGkNhJL9lsA76txkAZPA5Uv70,595
35
37
  thestage/git/ProgressPrinter.py,sha256=z99BPq3KYycClL-7fmsERIIuZ03papdIYOhR8A7b9AA,573
36
38
  thestage/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- thestage/helpers/error_handler.py,sha256=MnWHC46Vf9S0DjPL--GTewzg9nZHHDYhNZqG_BgVlr8,5265
39
+ thestage/helpers/error_handler.py,sha256=igSl0ex4Wm_sDC0O-R7KTvBibkEi1HEDLXX66EoNJP4,5280
38
40
  thestage/helpers/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- thestage/helpers/logger/app_logger.py,sha256=XIES-2LoRHNWQrZIUdAROeaUiTavADPtvePaytj5rUY,1627
41
+ thestage/helpers/logger/app_logger.py,sha256=hUuxgUsj4pl9Ogjt1xJePTf71iVxKzyx46dr1QZ7E28,1560
40
42
  thestage/helpers/ssh_util.py,sha256=JuDwddHxEGcA24Y8a-jLv339cG-jq4hEaBAl5TSVVFw,1262
41
43
  thestage/i18n/en_GB/messages.po,sha256=BuVIhd5TRQkgFkAbTGvbSRuO88lSJGpnk9TT2J9BC8E,32375
42
44
  thestage/i18n/translation.py,sha256=c62OicQ4phSMuqDe7hqGebIsk0W2-8ZJUfgfdtjjqEc,284
@@ -44,13 +46,17 @@ thestage/main.py,sha256=W0Vz9qdNK44fLRQOfZoa132iHqp5spIYLdgtOE4BYqU,659
44
46
  thestage/services/.env,sha256=K2VpzFAVjD75XawAHZdR0HWmypryA_mXNY4WHNgR-wQ,184
45
47
  thestage/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
48
  thestage/services/abstract_mapper.py,sha256=_q7YLkPNRsNW5wOCqvZIu1KfpLkc7uVaAQKrMZtsGuY,218
47
- thestage/services/abstract_service.py,sha256=KRsn3xiVhsgX8kESBr4fzDJWbiBWk3LlScWe1uFQ8D8,3958
48
- thestage/services/app_config_service.py,sha256=1bJM8XzQo9L-NXSoBqSSdgu6yg9v3S0loOc-69055o4,1657
49
+ thestage/services/abstract_service.py,sha256=1PBkO8pFkPmNk1VxUIxED0H3ZStCqAcFw7QGBlzkoh4,3963
50
+ thestage/services/app_config_service.py,sha256=a7zrbVCJx6XCSRCMv346AYQ_gV3fzw8g7EzunZJ-CIY,1655
51
+ thestage/services/clients/.DS_Store,sha256=nzq5skCC7S6pAZDF-RZCYmSwpDp-fIu7x4M5OFfbBUA,6148
49
52
  thestage/services/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
53
  thestage/services/clients/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- thestage/services/clients/git/git_client.py,sha256=tkB7AeesiwOkA2SL2yrYj7Mu0Fgmpx9q56MaXx_we-s,11619
54
+ thestage/services/clients/git/git_client.py,sha256=ZuoUWXctBIhRyMBde13ebMArYzMu-8vdUM7vY8IHUAY,11624
52
55
  thestage/services/clients/thestage_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- thestage/services/clients/thestage_api/api_client.py,sha256=6KBCd1hEDblqkHAVMSXUPgvSFuJA2jdttTdCg9_1cPk,31466
56
+ thestage/services/clients/thestage_api/api_client.py,sha256=BSxG6_FzoTCBub-24Hffwo6IsfAPhdzYqpfpediWucY,29396
57
+ thestage/services/clients/thestage_api/core/api_client_abstract.py,sha256=nJ0OiT4Ecexp-3HHK332pvyzrf1JsZ1WQYdvn-aeIL8,2984
58
+ thestage/services/clients/thestage_api/core/api_client_core.py,sha256=WwtzdTAxog-l2UU8Up40BxepgM7OTXn-XHgzlHorXT0,908
59
+ thestage/services/clients/thestage_api/core/http_client_exception.py,sha256=JH-874Gu9T1b1_FpPBLqdyt9U0PyhpwRCe_oDc6c_jI,385
54
60
  thestage/services/clients/thestage_api/dtos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
61
  thestage/services/clients/thestage_api/dtos/base_response.py,sha256=R6jjhvv0U0XD8j5N5T36q-6liiEAUy7xINFA1H7CMB8,410
56
62
  thestage/services/clients/thestage_api/dtos/cloud_provider_region.py,sha256=EJNhQywINW0dtjXKHEDb-etkWQ7keXNUSDhH-h9cabs,1011
@@ -97,7 +103,7 @@ thestage/services/clients/thestage_api/dtos/installed_service.py,sha256=YHpFFozY
97
103
  thestage/services/clients/thestage_api/dtos/instance_detected_gpus.py,sha256=G32A2kz78sJeLcWkIHcbkC75YxUezXjhp98_2RLCo1g,636
98
104
  thestage/services/clients/thestage_api/dtos/instance_rented_response.py,sha256=9mhB8pEPR4KqPG7esfgXJGW_UUed-PykGs2kz0cAbS8,4480
99
105
  thestage/services/clients/thestage_api/dtos/logging_controller/docker_container_log_stream_request.py,sha256=1roOpNE6BX8E9zyPdoMBp0bpL70xRQJepH9Q0EZ8H7c,223
100
- thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py,sha256=bzYFcBNbh7COd_wTzQWjgE2mQHH5r4joqypXfrblABg,526
106
+ thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py,sha256=mu3j0DH3qLrySf43EIET8vDn-miiEdYvFR8wX7mwh-4,526
101
107
  thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_response.py,sha256=To3AbryCZ4ihOlukrwucQQNUaRnNIvvH5VZw38AcjrA,548
102
108
  thestage/services/clients/thestage_api/dtos/logging_controller/task_log_stream_request.py,sha256=fbqteayY0XR7wNjuSrvJNJ61HSAaMM0LqPXqUVBUQxQ,190
103
109
  thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py,sha256=hCbd_SRHX8kQDMpfO7DpzhjdzxP-zmHBMc7Cnigi8bM,1032
@@ -113,9 +119,9 @@ thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_
113
119
  thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py,sha256=iISmJTHbxSRJsXHT4qBTMP3-Co9fWCHI5s2UgB_-GV8,340
114
120
  thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py,sha256=YtyM678EYehdCNAiwrEbWsXNsoRDtWeW1t96V7LLAFw,525
115
121
  thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py,sha256=Q7XlbZ4vgk9QQL2z11BeUkKDn-5p8j06eNI0GmpZNjk,430
116
- thestage/services/clients/thestage_api/dtos/project_response.py,sha256=GoQ_qd90eanDONK_GrsIIW4gHQrKIOn4FPuP4l5dZZk,1919
122
+ thestage/services/clients/thestage_api/dtos/project_response.py,sha256=PQ0L14_8akc5ADZeL_Y15Z2Hlvkt54d0YKfPROJZQHk,1691
117
123
  thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py,sha256=iDo2AFlUr2WV7vhBU40Abyp1AFoEk986UQRb5O0as4U,3049
118
- thestage/services/clients/thestage_api/dtos/sftp_path_helper.py,sha256=pUBOz-PvYm3NGZDbcnWmrq2VifB975ykIg10wMcSjOI,377
124
+ thestage/services/clients/thestage_api/dtos/sftp_path_helper.py,sha256=UeCEcE_qR_TcOGFyOLef7cz3veh1_o6MnLbAJyZk2yc,362
119
125
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_request.py,sha256=BmO99BXrbUCb2ZIYS2oc7xkwWb5CV5WCaqt1xO4yIro,234
120
126
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py,sha256=V8wH70noiX2wIFPr8MoBClVl3uUnKpJgaELp59dfK9E,391
121
127
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py,sha256=gRAyJnvUs4DaIfgDLmZAG7y1o1wvmh-cgbgHcG5iNjs,284
@@ -128,15 +134,17 @@ thestage/services/clients/thestage_api/dtos/task_controller/task_status_localize
128
134
  thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py,sha256=30P19Fipas4wzHguvzmxsAoDkKcGNbcKQ_SjJOQVsq8,462
129
135
  thestage/services/clients/thestage_api/dtos/user_profile.py,sha256=kWnGeYKe4umMzWBqzk0y0aWx8czZ-zs2WRvVRSopcFA,286
130
136
  thestage/services/config_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- thestage/services/config_provider/config_provider.py,sha256=OR61zGI_4bchMolCo0_gy0AVJ6FgAYzDf5P8XdUPLRA,7607
132
- thestage/services/connect/connect_service.py,sha256=EWX7mBgkb42WAtWcbjHXG4She5iglNCPIY_yx3xwf_k,9488
137
+ thestage/services/config_provider/config_provider.py,sha256=7vVCwQO-LsY4erkOcl6PG5A-ZrZx7HulFCz7Ncv9OCo,9729
138
+ thestage/services/connect/connect_service.py,sha256=6XK2ttKSAly3Vh0SOwM2FVY0OHyjp61XUpTKagX51NI,9508
133
139
  thestage/services/connect/dto/remote_server_config.py,sha256=yuO0tTAgUxCiQ-h1nVvWUMlCUtR-WB_eOH6KYspV7zQ,272
134
140
  thestage/services/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- thestage/services/container/container_service.py,sha256=OPkhFTm2NiBixCv6JSGVvBb3-6HwOuu3B3hX_fZcxZk,15073
141
+ thestage/services/container/container_service.py,sha256=1ZVoGpdxQqU0dRuL-Zxh3Y6h8CPcymVEK8CqfyCuCw0,14767
136
142
  thestage/services/container/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
143
  thestage/services/container/mapper/container_mapper.py,sha256=ymIjBLGZnpodh0W2KwNUqRxT0VgM1hsCViNza1nhWHk,1088
144
+ thestage/services/core_files/config_entity.py,sha256=RlTNEWEgKs7WvI7291tAXhKHb2XROgoilIR4eImqM60,1150
145
+ thestage/services/filesystem_service.py,sha256=jWo2Pwfrm3EiMY6S95zrkczLPhgyS7L5_8_ZRRa4KJ8,4226
138
146
  thestage/services/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
- thestage/services/instance/instance_service.py,sha256=icHizxCt-9dwz8R2S_8WDJnNy1VJEiEx8FTwFJRQ7-s,9265
147
+ thestage/services/instance/instance_service.py,sha256=AuhU__G1iBvxiHTp7OadgiRCpuOHbzcVW6ZlcsIw4ME,9270
140
148
  thestage/services/instance/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
149
  thestage/services/instance/mapper/instance_mapper.py,sha256=OA0-Z6ODfAK1yBjf7nF-JDKERr8lZUm5vYKk_TFw-v8,1132
142
150
  thestage/services/instance/mapper/selfhosted_mapper.py,sha256=KpkvsDV0OWzHhN53md4mgo3xc8siM5idDwL_pSRTouE,1286
@@ -144,7 +152,7 @@ thestage/services/logging/byte_print_style.py,sha256=vUimuC3ZgGujtweQxiRcUXEGlb2
144
152
  thestage/services/logging/dto/log_message.py,sha256=k2clfz2fQnQ-ycFI8g8WYJ_XOjK0hhlA5VhwxVYByaQ,453
145
153
  thestage/services/logging/dto/log_type.py,sha256=a6JWnq0ZjJ-2BQrG-fKYYy3UeJS2U2ZzE5P_EXglBfE,95
146
154
  thestage/services/logging/logging_constants.py,sha256=4Gk2tglHW_-jnjB8uVIh-ds4fAVBqNW8igfQt8k7Quc,137
147
- thestage/services/logging/logging_service.py,sha256=B9xxhimmkRGnf4gtViJxTv0XWOWlwQfqj2ct6fviQZI,20457
155
+ thestage/services/logging/logging_service.py,sha256=9n-X9UsWJB-2b36s9j7JMQaSeA7nvz1yM2FTIZBVxzQ,18014
148
156
  thestage/services/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
157
  thestage/services/project/dto/inference_simulator_dto.py,sha256=5U4uGp7VC1Yr-T0fqZiSNqZUIybs4J9sV25vjBbAUxI,1312
150
158
  thestage/services/project/dto/inference_simulator_model_dto.py,sha256=j4dT-7cduzLd59QnmnfQt_aFsiUucpyJFGb-9rNx5K8,1172
@@ -153,13 +161,13 @@ thestage/services/project/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
153
161
  thestage/services/project/mapper/project_inference_simulator_mapper.py,sha256=UdOu9IIF5rlNPoWSaaeSKU3ODe8E5uSMgm2V5ywMWKE,812
154
162
  thestage/services/project/mapper/project_inference_simulator_model_mapper.py,sha256=PWY0iWbXhvD-G0X0_aQZAFY2bqc0lvRJcQAyC8Y-88Q,869
155
163
  thestage/services/project/mapper/project_task_mapper.py,sha256=SHIEXjYwt4vm2B1X2QiI4sCPbBarum0bTOnmTWPOlto,813
156
- thestage/services/project/project_service.py,sha256=ifrP1RrYcHE8U66eumMDvAFZhH4yz4DIbGaWO2_MCxY,50567
157
- thestage/services/remote_server_service.py,sha256=gOkEEgCcu4lFo__d9-zFQFBYA9IFbrHIZFhfHfIm7ww,23268
158
- thestage/services/service_factory.py,sha256=dnYc_Ih4TOIYjQInjzf6bpeALXRmWq1TYMIVHvEeONs,5104
164
+ thestage/services/project/project_service.py,sha256=qMMYKgmzlEwtsTsHr4arQP2JeBftq0n5M0XAVsK3cZA,50670
165
+ thestage/services/remote_server_service.py,sha256=3VPgd9ckxXOxXGGvb3JeJ0LwuZx2gd2jWn3Pf-CxqVk,23264
166
+ thestage/services/service_factory.py,sha256=tWbFFDO6TeOz5jSYbe-OabqTmsjR9Xs1OZmd49Aj3g0,5098
159
167
  thestage/services/task/dto/task_dto.py,sha256=PJwrUsLLAoO2uA9xvzb27b9iYAoNiBcsHSxKERh2VFo,2335
160
- thestage/services/validation_service.py,sha256=7rjJlMCduCzHUnOkLL22t3rr4mr-XudCtyWzZKnCo7A,1621
161
- thestage-0.5.38.dist-info/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
162
- thestage-0.5.38.dist-info/METADATA,sha256=RUISssQQGMvnUff6aA0-FTx5K5nYMguGKE9Us2_lsBc,5546
163
- thestage-0.5.38.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
164
- thestage-0.5.38.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
165
- thestage-0.5.38.dist-info/RECORD,,
168
+ thestage/services/validation_service.py,sha256=ABb-ok-SGITE6jm8AR1hiYHYgGZL7ri02Yi0OCXbofo,2008
169
+ thestage-0.5.40.dist-info/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
170
+ thestage-0.5.40.dist-info/METADATA,sha256=K92Tr4pPoTTCqtVr-QKe3jxc6plTxu8o2KmqDvjgI7k,5506
171
+ thestage-0.5.40.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
172
+ thestage-0.5.40.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
173
+ thestage-0.5.40.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any