polyaxon 2.0.0rc28__py3-none-any.whl → 2.0.0rc29__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 (205) hide show
  1. polyaxon/api.py +4 -0
  2. polyaxon/auxiliaries/default_scheduling.py +1 -1
  3. polyaxon/auxiliaries/init.py +1 -1
  4. polyaxon/auxiliaries/sidecar.py +1 -1
  5. polyaxon/cli/operations.py +18 -2
  6. polyaxon/cli/services/docker.py +1 -1
  7. polyaxon/cli/services/initializer.py +1 -1
  8. polyaxon/client/run.py +23 -26
  9. polyaxon/compiler/contexts/contexts.py +0 -2
  10. polyaxon/compiler/contexts/service.py +14 -9
  11. polyaxon/compiler/resolver/agent.py +1 -1
  12. polyaxon/compiler/resolver/runtime.py +0 -1
  13. polyaxon/constants/metadata.py +1 -0
  14. polyaxon/deploy/schemas/auth.py +1 -1
  15. polyaxon/deploy/schemas/celery.py +1 -1
  16. polyaxon/deploy/schemas/deployment.py +7 -1
  17. polyaxon/deploy/schemas/email.py +1 -1
  18. polyaxon/deploy/schemas/ingress.py +1 -1
  19. polyaxon/deploy/schemas/intervals.py +1 -1
  20. polyaxon/deploy/schemas/operators.py +0 -1
  21. polyaxon/deploy/schemas/proxy.py +1 -1
  22. polyaxon/deploy/schemas/root_user.py +1 -1
  23. polyaxon/deploy/schemas/security_context.py +1 -1
  24. polyaxon/deploy/schemas/service.py +1 -1
  25. polyaxon/deploy/schemas/ssl.py +1 -1
  26. polyaxon/deploy/schemas/ui.py +1 -1
  27. polyaxon/docker/docker_types.py +1 -1
  28. polyaxon/env_vars/keys.py +0 -2
  29. polyaxon/k8s/converter/converters/__init__.py +0 -2
  30. polyaxon/k8s/converter/converters/dask_job.py +3 -0
  31. polyaxon/k8s/converter/mixins.py +0 -7
  32. polyaxon/k8s/custom_resources/dask_job.py +14 -2
  33. polyaxon/lifecycle.py +1 -1
  34. polyaxon/pkg.py +1 -1
  35. polyaxon/polyflow/__init__.py +0 -4
  36. polyaxon/polyflow/builds/__init__.py +1 -1
  37. polyaxon/polyflow/cache/__init__.py +1 -1
  38. polyaxon/polyflow/component/base.py +1 -1
  39. polyaxon/polyflow/component/component.py +1 -2
  40. polyaxon/polyflow/component/component_reference.py +1 -1
  41. polyaxon/polyflow/early_stopping/__init__.py +1 -1
  42. polyaxon/polyflow/early_stopping/policies.py +1 -1
  43. polyaxon/polyflow/environment/__init__.py +1 -1
  44. polyaxon/polyflow/events/__init__.py +1 -1
  45. polyaxon/polyflow/hooks/__init__.py +1 -1
  46. polyaxon/polyflow/init/__init__.py +1 -1
  47. polyaxon/polyflow/io/io.py +1 -1
  48. polyaxon/polyflow/joins/__init__.py +1 -1
  49. polyaxon/polyflow/matrix/__init__.py +1 -1
  50. polyaxon/polyflow/matrix/bayes.py +7 -1
  51. polyaxon/polyflow/matrix/grid_search.py +1 -1
  52. polyaxon/polyflow/matrix/hyperband.py +1 -1
  53. polyaxon/polyflow/matrix/hyperopt.py +1 -1
  54. polyaxon/polyflow/matrix/iterative.py +1 -1
  55. polyaxon/polyflow/matrix/mapping.py +1 -1
  56. polyaxon/polyflow/matrix/params.py +2 -2
  57. polyaxon/polyflow/matrix/random_search.py +1 -1
  58. polyaxon/polyflow/matrix/tuner.py +1 -1
  59. polyaxon/polyflow/mounts/artifacts_mounts.py +1 -1
  60. polyaxon/polyflow/notifications/__init__.py +1 -1
  61. polyaxon/polyflow/operations/base.py +1 -1
  62. polyaxon/polyflow/operations/operation.py +1 -2
  63. polyaxon/polyflow/optimization/__init__.py +1 -1
  64. polyaxon/polyflow/params/params.py +1 -1
  65. polyaxon/polyflow/plugins/__init__.py +1 -1
  66. polyaxon/polyflow/references/dag.py +1 -1
  67. polyaxon/polyflow/references/hub.py +1 -1
  68. polyaxon/polyflow/references/path.py +1 -1
  69. polyaxon/polyflow/references/url.py +1 -1
  70. polyaxon/polyflow/run/__init__.py +1 -13
  71. polyaxon/polyflow/run/dag.py +7 -1
  72. polyaxon/polyflow/run/dask/replica.py +1 -1
  73. polyaxon/polyflow/run/job.py +1 -1
  74. polyaxon/polyflow/run/kinds.py +14 -1
  75. polyaxon/polyflow/run/kubeflow/mpi_job.py +1 -1
  76. polyaxon/polyflow/run/kubeflow/mx_job.py +1 -1
  77. polyaxon/polyflow/run/kubeflow/paddle_job.py +1 -1
  78. polyaxon/polyflow/run/kubeflow/pytorch_job.py +1 -1
  79. polyaxon/polyflow/run/kubeflow/replica.py +1 -1
  80. polyaxon/polyflow/run/kubeflow/scheduling_policy.py +1 -1
  81. polyaxon/polyflow/run/kubeflow/tf_job.py +1 -1
  82. polyaxon/polyflow/run/kubeflow/xgboost_job.py +1 -1
  83. polyaxon/polyflow/run/patch.py +1 -7
  84. polyaxon/polyflow/run/ray/ray.py +1 -1
  85. polyaxon/polyflow/run/ray/replica.py +1 -1
  86. polyaxon/polyflow/run/resources.py +1 -1
  87. polyaxon/polyflow/run/service.py +1 -1
  88. polyaxon/polyflow/schedules/__init__.py +1 -1
  89. polyaxon/polyflow/schedules/cron.py +1 -1
  90. polyaxon/polyflow/schedules/datetime.py +1 -1
  91. polyaxon/polyflow/schedules/interval.py +1 -1
  92. polyaxon/polyflow/templates/__init__.py +1 -1
  93. polyaxon/polyflow/termination/__init__.py +2 -2
  94. polyaxon/schemas/api/authentication.py +1 -1
  95. polyaxon/schemas/api/home.py +1 -1
  96. polyaxon/schemas/api/installation.py +1 -1
  97. polyaxon/schemas/api/log_handler.py +1 -1
  98. polyaxon/schemas/api/resources.py +1 -1
  99. polyaxon/schemas/api/user.py +1 -1
  100. polyaxon/schemas/api/version.py +1 -1
  101. polyaxon/schemas/base.py +1 -1
  102. polyaxon/schemas/cli/agent_config.py +1 -1
  103. polyaxon/schemas/cli/cli_config.py +1 -1
  104. polyaxon/schemas/cli/client_config.py +1 -1
  105. polyaxon/schemas/responses/v1_activity.py +1 -1
  106. polyaxon/schemas/responses/v1_agent.py +1 -1
  107. polyaxon/schemas/responses/v1_agent_status_body_request.py +1 -1
  108. polyaxon/schemas/responses/v1_analytics_spec.py +1 -1
  109. polyaxon/schemas/responses/v1_artifact_tree.py +1 -1
  110. polyaxon/schemas/responses/v1_auth.py +1 -1
  111. polyaxon/schemas/responses/v1_cloning.py +1 -1
  112. polyaxon/schemas/responses/v1_connection_response.py +1 -1
  113. polyaxon/schemas/responses/v1_dashboard.py +1 -1
  114. polyaxon/schemas/responses/v1_entities_tags.py +1 -1
  115. polyaxon/schemas/responses/v1_entities_transfer.py +1 -1
  116. polyaxon/schemas/responses/v1_entity_notification_body.py +1 -1
  117. polyaxon/schemas/responses/v1_entity_stage_body_request.py +1 -1
  118. polyaxon/schemas/responses/v1_entity_status_body_request.py +1 -1
  119. polyaxon/schemas/responses/v1_list_activities_response.py +1 -1
  120. polyaxon/schemas/responses/v1_list_agents_response.py +1 -1
  121. polyaxon/schemas/responses/v1_list_bookmarks_response.py +1 -1
  122. polyaxon/schemas/responses/v1_list_connections_response.py +1 -1
  123. polyaxon/schemas/responses/v1_list_dashboards_response.py +1 -1
  124. polyaxon/schemas/responses/v1_list_organization_members_response.py +1 -1
  125. polyaxon/schemas/responses/v1_list_organizations_response.py +1 -1
  126. polyaxon/schemas/responses/v1_list_presets_response.py +1 -1
  127. polyaxon/schemas/responses/v1_list_project_versions_response.py +1 -1
  128. polyaxon/schemas/responses/v1_list_projects_response.py +1 -1
  129. polyaxon/schemas/responses/v1_list_queues_response.py +1 -1
  130. polyaxon/schemas/responses/v1_list_run_artifacts_response.py +1 -1
  131. polyaxon/schemas/responses/v1_list_run_connections_response.py +1 -1
  132. polyaxon/schemas/responses/v1_list_run_edges_response.py +1 -1
  133. polyaxon/schemas/responses/v1_list_runs_response.py +1 -1
  134. polyaxon/schemas/responses/v1_list_searches_response.py +1 -1
  135. polyaxon/schemas/responses/v1_list_service_accounts_response.py +1 -1
  136. polyaxon/schemas/responses/v1_list_tags_response.py +1 -1
  137. polyaxon/schemas/responses/v1_list_team_members_response.py +1 -1
  138. polyaxon/schemas/responses/v1_list_teams_response.py +1 -1
  139. polyaxon/schemas/responses/v1_list_token_response.py +1 -1
  140. polyaxon/schemas/responses/v1_operation_body.py +1 -1
  141. polyaxon/schemas/responses/v1_organization.py +1 -1
  142. polyaxon/schemas/responses/v1_organization_member.py +1 -1
  143. polyaxon/schemas/responses/v1_password_change.py +1 -1
  144. polyaxon/schemas/responses/v1_pipeline.py +1 -1
  145. polyaxon/schemas/responses/v1_preset.py +1 -1
  146. polyaxon/schemas/responses/v1_project.py +1 -1
  147. polyaxon/schemas/responses/v1_project_settings.py +1 -1
  148. polyaxon/schemas/responses/v1_project_user_access.py +1 -1
  149. polyaxon/schemas/responses/v1_project_version.py +1 -1
  150. polyaxon/schemas/responses/v1_queue.py +1 -1
  151. polyaxon/schemas/responses/v1_run.py +1 -1
  152. polyaxon/schemas/responses/v1_run_connection.py +1 -1
  153. polyaxon/schemas/responses/v1_run_reference_catalog.py +1 -1
  154. polyaxon/schemas/responses/v1_run_settings.py +1 -1
  155. polyaxon/schemas/responses/v1_search.py +1 -1
  156. polyaxon/schemas/responses/v1_search_spec.py +1 -1
  157. polyaxon/schemas/responses/v1_section_spec.py +1 -1
  158. polyaxon/schemas/responses/v1_service_account.py +1 -1
  159. polyaxon/schemas/responses/v1_settings_catalog.py +2 -1
  160. polyaxon/schemas/responses/v1_tag.py +1 -1
  161. polyaxon/schemas/responses/v1_team.py +1 -1
  162. polyaxon/schemas/responses/v1_team_member.py +1 -1
  163. polyaxon/schemas/responses/v1_token.py +1 -1
  164. polyaxon/schemas/responses/v1_trial_start.py +1 -1
  165. polyaxon/schemas/responses/v1_user.py +1 -1
  166. polyaxon/schemas/responses/v1_user_singup.py +1 -1
  167. polyaxon/schemas/services.py +1 -1
  168. polyaxon/schemas/types/artifacts.py +1 -1
  169. polyaxon/schemas/types/dockerfile.py +1 -1
  170. polyaxon/schemas/types/event.py +1 -1
  171. polyaxon/schemas/types/file.py +1 -1
  172. polyaxon/schemas/types/git.py +1 -1
  173. polyaxon/schemas/types/tensorboard.py +1 -1
  174. polyaxon/sdk/api/agents_v1_api.py +1 -1
  175. polyaxon/sdk/api/artifacts_stores_v1_api.py +1 -1
  176. polyaxon/sdk/api/auth_v1_api.py +1 -1
  177. polyaxon/sdk/api/connections_v1_api.py +1 -1
  178. polyaxon/sdk/api/dashboards_v1_api.py +1 -1
  179. polyaxon/sdk/api/organizations_v1_api.py +1 -1
  180. polyaxon/sdk/api/presets_v1_api.py +1 -1
  181. polyaxon/sdk/api/project_dashboards_v1_api.py +1 -1
  182. polyaxon/sdk/api/project_searches_v1_api.py +1 -1
  183. polyaxon/sdk/api/projects_v1_api.py +1 -1
  184. polyaxon/sdk/api/queues_v1_api.py +1 -1
  185. polyaxon/sdk/api/runs_v1_api.py +88 -10
  186. polyaxon/sdk/api/searches_v1_api.py +1 -1
  187. polyaxon/sdk/api/service_accounts_v1_api.py +1 -1
  188. polyaxon/sdk/api/tags_v1_api.py +1 -1
  189. polyaxon/sdk/api/teams_v1_api.py +1 -1
  190. polyaxon/sdk/api/users_v1_api.py +1 -1
  191. polyaxon/sdk/api/versions_v1_api.py +1 -1
  192. polyaxon/settings.py +1 -1
  193. polyaxon/utils/urls_utils.py +3 -1
  194. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/METADATA +31 -31
  195. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/RECORD +199 -205
  196. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/WHEEL +1 -1
  197. polyaxon/compiler/contexts/spark_job.py +0 -39
  198. polyaxon/k8s/converter/converters/spark_job.py +0 -64
  199. polyaxon/k8s/custom_resources/spark_job.py +0 -97
  200. polyaxon/polyflow/run/spark/__init__.py +0 -2
  201. polyaxon/polyflow/run/spark/replica.py +0 -165
  202. polyaxon/polyflow/run/spark/spark.py +0 -341
  203. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/LICENSE +0 -0
  204. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/entry_points.txt +0 -0
  205. {polyaxon-2.0.0rc28.dist-info → polyaxon-2.0.0rc29.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.uuids import UUIDStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -1,6 +1,6 @@
1
1
  from typing import Optional
2
2
 
3
- from pydantic import StrictStr
3
+ from clipped.compact.pydantic import StrictStr
4
4
 
5
5
  from polyaxon.schemas.base import BaseResponseModel
6
6
 
@@ -1,6 +1,6 @@
1
1
  from typing import Any, Dict, List, Optional
2
2
 
3
- from pydantic import StrictStr
3
+ from clipped.compact.pydantic import StrictStr
4
4
 
5
5
  from polyaxon.schemas.base import BaseResponseModel
6
6
  from polyaxon.schemas.responses.v1_run_reference_catalog import V1RunReferenceCatalog
@@ -2,8 +2,8 @@ import datetime
2
2
 
3
3
  from typing import List, Optional
4
4
 
5
+ from clipped.compact.pydantic import StrictStr
5
6
  from clipped.types.uuids import UUIDStr
6
- from pydantic import StrictStr
7
7
 
8
8
  from polyaxon.schemas.base import BaseResponseModel
9
9
  from polyaxon.schemas.responses.v1_search_spec import V1SearchSpec
@@ -1,6 +1,6 @@
1
1
  from typing import Any, Dict, Optional
2
2
 
3
- from pydantic import StrictStr
3
+ from clipped.compact.pydantic import StrictStr
4
4
 
5
5
  from polyaxon.schemas.base import BaseResponseModel
6
6
  from polyaxon.schemas.responses.v1_analytics_spec import V1AnalyticsSpec
@@ -1,6 +1,6 @@
1
1
  from typing import Any, Dict, List, Optional
2
2
 
3
- from pydantic import Field, StrictStr
3
+ from clipped.compact.pydantic import Field, StrictStr
4
4
 
5
5
  from polyaxon.schemas.base import BaseResponseModel
6
6
 
@@ -2,8 +2,8 @@ import datetime
2
2
 
3
3
  from typing import List, Optional
4
4
 
5
+ from clipped.compact.pydantic import StrictStr
5
6
  from clipped.types.uuids import UUIDStr
6
- from pydantic import StrictStr
7
7
 
8
8
  from polyaxon.schemas.base import BaseResponseModel
9
9
 
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.uuids import UUIDStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -9,3 +9,4 @@ from polyaxon.schemas.base import BaseResponseModel
9
9
  class V1SettingsCatalog(BaseResponseModel):
10
10
  uuid: Optional[UUIDStr]
11
11
  name: Optional[StrictStr]
12
+ version: Optional[StrictStr]
@@ -1,7 +1,7 @@
1
1
  from typing import Any, Dict, Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.uuids import UUIDStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -2,8 +2,8 @@ import datetime
2
2
 
3
3
  from typing import List, Optional
4
4
 
5
+ from clipped.compact.pydantic import StrictStr
5
6
  from clipped.types.uuids import UUIDStr
6
- from pydantic import StrictStr
7
7
 
8
8
  from polyaxon.schemas.base import BaseResponseModel
9
9
  from polyaxon.schemas.responses.v1_team_settings import V1TeamSettings
@@ -2,8 +2,8 @@ import datetime
2
2
 
3
3
  from typing import Optional
4
4
 
5
+ from clipped.compact.pydantic import StrictStr
5
6
  from clipped.types.email import EmailStr
6
- from pydantic import StrictStr
7
7
 
8
8
  from polyaxon.schemas.base import BaseResponseModel
9
9
 
@@ -2,8 +2,8 @@ import datetime
2
2
 
3
3
  from typing import List, Optional
4
4
 
5
+ from clipped.compact.pydantic import StrictStr
5
6
  from clipped.types.uuids import UUIDStr
6
- from pydantic import StrictStr
7
7
 
8
8
  from polyaxon.schemas.base import BaseResponseModel
9
9
 
@@ -1,7 +1,7 @@
1
1
  from typing import Any, Dict, Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.email import EmailStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.email import EmailStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.email import EmailStr
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.base import BaseResponseModel
7
7
 
@@ -1,6 +1,6 @@
1
1
  from typing import Dict, List, Optional, Union
2
2
 
3
- from pydantic import Field, StrictStr, validator
3
+ from clipped.compact.pydantic import Field, StrictStr, validator
4
4
 
5
5
  from polyaxon.containers.pull_policy import PullPolicy
6
6
  from polyaxon.k8s import k8s_schemas, k8s_validation
@@ -1,7 +1,7 @@
1
1
  from typing import List, Optional, Union
2
2
 
3
+ from clipped.compact.pydantic import StrictInt
3
4
  from clipped.types.ref_or_obj import RefField
4
- from pydantic import StrictInt
5
5
 
6
6
  from polyaxon.schemas.types.base import BaseTypeConfig
7
7
 
@@ -1,9 +1,9 @@
1
1
  from typing import Any, Dict, List, Optional, Tuple, Union
2
2
 
3
+ from clipped.compact.pydantic import Field, StrictStr, validator
3
4
  from clipped.config.schema import skip_partial
4
5
  from clipped.types.docker_image import validate_image
5
6
  from clipped.types.ref_or_obj import RefField
6
- from pydantic import Field, StrictStr, validator
7
7
 
8
8
  from polyaxon.schemas.types.base import BaseTypeConfig
9
9
 
@@ -1,6 +1,6 @@
1
1
  from typing import Optional
2
2
 
3
- from pydantic import StrictStr
3
+ from clipped.compact.pydantic import StrictStr
4
4
 
5
5
  from polyaxon.schemas.types.base import BaseTypeConfig
6
6
 
@@ -1,7 +1,7 @@
1
1
  from typing import Optional, Union
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.ref_or_obj import RefField
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.types.base import BaseTypeConfig
7
7
  from traceml.artifacts import V1ArtifactKind
@@ -1,7 +1,7 @@
1
1
  from typing import List, Optional, Union
2
2
 
3
+ from clipped.compact.pydantic import StrictStr
3
4
  from clipped.types.ref_or_obj import RefField
4
- from pydantic import StrictStr
5
5
 
6
6
  from polyaxon.schemas.types.base import BaseTypeConfig
7
7
 
@@ -1,9 +1,9 @@
1
1
  from typing import List, Optional, Union
2
2
 
3
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validator
3
4
  from clipped.types.ref_or_obj import RefField
4
5
  from clipped.types.uuids import UUIDStr
5
6
  from clipped.utils.lists import to_list
6
- from pydantic import Field, StrictInt, StrictStr, validator
7
7
 
8
8
  from polyaxon.schemas.types.base import BaseTypeConfig
9
9
 
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.lifecycle import V1Status
7
7
  from polyaxon.schemas.responses.v1_agent import V1Agent
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.sdk.base_api import BaseApi
7
7
  from polyaxon.sdk.exceptions import ApiTypeError
@@ -1,4 +1,4 @@
1
- from pydantic import validate_arguments
1
+ from clipped.compact.pydantic import validate_arguments
2
2
 
3
3
  from polyaxon.schemas.api.authentication import V1Credentials
4
4
  from polyaxon.schemas.responses.v1_auth import V1Auth
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_connection_response import V1ConnectionResponse
7
7
  from polyaxon.schemas.responses.v1_list_connections_response import (
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_dashboard import V1Dashboard
7
7
  from polyaxon.schemas.responses.v1_list_dashboards_response import (
@@ -2,7 +2,7 @@ from datetime import datetime
2
2
  from typing import Optional
3
3
  from typing_extensions import Annotated
4
4
 
5
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
5
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
6
6
 
7
7
  from polyaxon.schemas.responses.v1_entities_tags import V1EntitiesTags
8
8
  from polyaxon.schemas.responses.v1_entities_transfer import V1EntitiesTransfer
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_list_presets_response import V1ListPresetsResponse
7
7
  from polyaxon.schemas.responses.v1_preset import V1Preset
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_dashboard import V1Dashboard
7
7
  from polyaxon.schemas.responses.v1_list_dashboards_response import (
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_list_searches_response import V1ListSearchesResponse
7
7
  from polyaxon.schemas.responses.v1_search import V1Search
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.lifecycle import V1Stage
7
7
  from polyaxon.schemas.responses.v1_entity_stage_body_request import (
@@ -1,7 +1,7 @@
1
1
  from typing import Optional
2
2
  from typing_extensions import Annotated
3
3
 
4
- from pydantic import Field, StrictInt, StrictStr, validate_arguments
4
+ from clipped.compact.pydantic import Field, StrictInt, StrictStr, validate_arguments
5
5
 
6
6
  from polyaxon.schemas.responses.v1_list_queues_response import V1ListQueuesResponse
7
7
  from polyaxon.schemas.responses.v1_queue import V1Queue