lightning-sdk 0.2.17__py3-none-any.whl → 0.2.18__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.
- lightning_sdk/__init__.py +1 -1
- lightning_sdk/api/llm_api.py +3 -2
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +27 -1
- lightning_sdk/llm/llm.py +0 -2
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/RECORD +12 -12
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.17.dist-info → lightning_sdk-0.2.18.dist-info}/top_level.txt +0 -0
lightning_sdk/__init__.py
CHANGED
lightning_sdk/api/llm_api.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import base64
|
|
2
2
|
import json
|
|
3
|
+
import os
|
|
3
4
|
from typing import Dict, Generator, List, Optional, Union
|
|
4
5
|
|
|
5
6
|
from pip._vendor.urllib3 import HTTPResponse
|
|
@@ -74,8 +75,8 @@ class LLMApi:
|
|
|
74
75
|
name: Optional[str] = None,
|
|
75
76
|
metadata: Optional[Dict[str, str]] = None,
|
|
76
77
|
stream: bool = False,
|
|
77
|
-
internal_conversation: bool = False,
|
|
78
78
|
) -> Union[V1ConversationResponseChunk, Generator[V1ConversationResponseChunk, None, None]]:
|
|
79
|
+
is_internal_conversation = os.getenv("LIGHTNING_INTERNAL_CONVERSATION", "false").lower() == "true"
|
|
79
80
|
body = {
|
|
80
81
|
"message": {
|
|
81
82
|
"author": {"role": "user"},
|
|
@@ -89,7 +90,7 @@ class LLMApi:
|
|
|
89
90
|
"name": name,
|
|
90
91
|
"stream": stream,
|
|
91
92
|
"metadata": metadata or {},
|
|
92
|
-
"internal_conversation":
|
|
93
|
+
"internal_conversation": is_internal_conversation,
|
|
93
94
|
}
|
|
94
95
|
if images:
|
|
95
96
|
for image in images:
|
|
@@ -47,7 +47,6 @@ class V1GoogleCloudDirectV1(object):
|
|
|
47
47
|
'credentials_secret_id': 'str',
|
|
48
48
|
'credentials_service_account_email': 'str',
|
|
49
49
|
'custom_subnet_mode': 'bool',
|
|
50
|
-
'migration_bucket_name': 'str',
|
|
51
50
|
'primary_region': 'str',
|
|
52
51
|
'project_id': 'str',
|
|
53
52
|
'project_sa_enabled': 'bool',
|
|
@@ -65,7 +64,6 @@ class V1GoogleCloudDirectV1(object):
|
|
|
65
64
|
'credentials_secret_id': 'credentialsSecretId',
|
|
66
65
|
'credentials_service_account_email': 'credentialsServiceAccountEmail',
|
|
67
66
|
'custom_subnet_mode': 'customSubnetMode',
|
|
68
|
-
'migration_bucket_name': 'migrationBucketName',
|
|
69
67
|
'primary_region': 'primaryRegion',
|
|
70
68
|
'project_id': 'projectId',
|
|
71
69
|
'project_sa_enabled': 'projectSaEnabled',
|
|
@@ -76,7 +74,7 @@ class V1GoogleCloudDirectV1(object):
|
|
|
76
74
|
'vpcs': 'vpcs'
|
|
77
75
|
}
|
|
78
76
|
|
|
79
|
-
def __init__(self, bucket_name: 'str' =None, compute_project_role: 'str' =None, compute_service_account_email: 'str' =None, credentials_secret_id: 'str' =None, credentials_service_account_email: 'str' =None, custom_subnet_mode: 'bool' =None,
|
|
77
|
+
def __init__(self, bucket_name: 'str' =None, compute_project_role: 'str' =None, compute_service_account_email: 'str' =None, credentials_secret_id: 'str' =None, credentials_service_account_email: 'str' =None, custom_subnet_mode: 'bool' =None, primary_region: 'str' =None, project_id: 'str' =None, project_sa_enabled: 'bool' =None, regions: 'list[str]' =None, service_account_email: 'str' =None, source_cidr_ips: 'list[str]' =None, subnets: 'list[V1SubnetSpec]' =None, vpcs: 'list[V1GCPDirectVPC]' =None): # noqa: E501
|
|
80
78
|
"""V1GoogleCloudDirectV1 - a model defined in Swagger""" # noqa: E501
|
|
81
79
|
self._bucket_name = None
|
|
82
80
|
self._compute_project_role = None
|
|
@@ -84,7 +82,6 @@ class V1GoogleCloudDirectV1(object):
|
|
|
84
82
|
self._credentials_secret_id = None
|
|
85
83
|
self._credentials_service_account_email = None
|
|
86
84
|
self._custom_subnet_mode = None
|
|
87
|
-
self._migration_bucket_name = None
|
|
88
85
|
self._primary_region = None
|
|
89
86
|
self._project_id = None
|
|
90
87
|
self._project_sa_enabled = None
|
|
@@ -106,8 +103,6 @@ class V1GoogleCloudDirectV1(object):
|
|
|
106
103
|
self.credentials_service_account_email = credentials_service_account_email
|
|
107
104
|
if custom_subnet_mode is not None:
|
|
108
105
|
self.custom_subnet_mode = custom_subnet_mode
|
|
109
|
-
if migration_bucket_name is not None:
|
|
110
|
-
self.migration_bucket_name = migration_bucket_name
|
|
111
106
|
if primary_region is not None:
|
|
112
107
|
self.primary_region = primary_region
|
|
113
108
|
if project_id is not None:
|
|
@@ -253,27 +248,6 @@ class V1GoogleCloudDirectV1(object):
|
|
|
253
248
|
|
|
254
249
|
self._custom_subnet_mode = custom_subnet_mode
|
|
255
250
|
|
|
256
|
-
@property
|
|
257
|
-
def migration_bucket_name(self) -> 'str':
|
|
258
|
-
"""Gets the migration_bucket_name of this V1GoogleCloudDirectV1. # noqa: E501
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
:return: The migration_bucket_name of this V1GoogleCloudDirectV1. # noqa: E501
|
|
262
|
-
:rtype: str
|
|
263
|
-
"""
|
|
264
|
-
return self._migration_bucket_name
|
|
265
|
-
|
|
266
|
-
@migration_bucket_name.setter
|
|
267
|
-
def migration_bucket_name(self, migration_bucket_name: 'str'):
|
|
268
|
-
"""Sets the migration_bucket_name of this V1GoogleCloudDirectV1.
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
:param migration_bucket_name: The migration_bucket_name of this V1GoogleCloudDirectV1. # noqa: E501
|
|
272
|
-
:type: str
|
|
273
|
-
"""
|
|
274
|
-
|
|
275
|
-
self._migration_bucket_name = migration_bucket_name
|
|
276
|
-
|
|
277
251
|
@property
|
|
278
252
|
def primary_region(self) -> 'str':
|
|
279
253
|
"""Gets the primary_region of this V1GoogleCloudDirectV1. # noqa: E501
|
|
@@ -46,7 +46,6 @@ class V1Project(object):
|
|
|
46
46
|
'creator_id': 'str',
|
|
47
47
|
'description': 'str',
|
|
48
48
|
'display_name': 'str',
|
|
49
|
-
'gcp_bucket_name': 'str',
|
|
50
49
|
'id': 'str',
|
|
51
50
|
'is_default': 'bool',
|
|
52
51
|
'lock_out_uploads': 'bool',
|
|
@@ -67,7 +66,6 @@ class V1Project(object):
|
|
|
67
66
|
'creator_id': 'creatorId',
|
|
68
67
|
'description': 'description',
|
|
69
68
|
'display_name': 'displayName',
|
|
70
|
-
'gcp_bucket_name': 'gcpBucketName',
|
|
71
69
|
'id': 'id',
|
|
72
70
|
'is_default': 'isDefault',
|
|
73
71
|
'lock_out_uploads': 'lockOutUploads',
|
|
@@ -82,14 +80,13 @@ class V1Project(object):
|
|
|
82
80
|
'updated_at': 'updatedAt'
|
|
83
81
|
}
|
|
84
82
|
|
|
85
|
-
def __init__(self, abac_enabled: 'bool' =None, created_at: 'datetime' =None, creator_id: 'str' =None, description: 'str' =None, display_name: 'str' =None,
|
|
83
|
+
def __init__(self, abac_enabled: 'bool' =None, created_at: 'datetime' =None, creator_id: 'str' =None, description: 'str' =None, display_name: 'str' =None, id: 'str' =None, is_default: 'bool' =None, lock_out_uploads: 'bool' =None, name: 'str' =None, number_of_files_uploads: 'str' =None, owner_id: 'str' =None, owner_type: 'V1OwnerType' =None, private: 'bool' =None, project_settings: 'V1ProjectSettings' =None, quotas: 'V1Quotas' =None, total_size_uploads_bytes: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
|
|
86
84
|
"""V1Project - a model defined in Swagger""" # noqa: E501
|
|
87
85
|
self._abac_enabled = None
|
|
88
86
|
self._created_at = None
|
|
89
87
|
self._creator_id = None
|
|
90
88
|
self._description = None
|
|
91
89
|
self._display_name = None
|
|
92
|
-
self._gcp_bucket_name = None
|
|
93
90
|
self._id = None
|
|
94
91
|
self._is_default = None
|
|
95
92
|
self._lock_out_uploads = None
|
|
@@ -113,8 +110,6 @@ class V1Project(object):
|
|
|
113
110
|
self.description = description
|
|
114
111
|
if display_name is not None:
|
|
115
112
|
self.display_name = display_name
|
|
116
|
-
if gcp_bucket_name is not None:
|
|
117
|
-
self.gcp_bucket_name = gcp_bucket_name
|
|
118
113
|
if id is not None:
|
|
119
114
|
self.id = id
|
|
120
115
|
if is_default is not None:
|
|
@@ -245,27 +240,6 @@ class V1Project(object):
|
|
|
245
240
|
|
|
246
241
|
self._display_name = display_name
|
|
247
242
|
|
|
248
|
-
@property
|
|
249
|
-
def gcp_bucket_name(self) -> 'str':
|
|
250
|
-
"""Gets the gcp_bucket_name of this V1Project. # noqa: E501
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
:return: The gcp_bucket_name of this V1Project. # noqa: E501
|
|
254
|
-
:rtype: str
|
|
255
|
-
"""
|
|
256
|
-
return self._gcp_bucket_name
|
|
257
|
-
|
|
258
|
-
@gcp_bucket_name.setter
|
|
259
|
-
def gcp_bucket_name(self, gcp_bucket_name: 'str'):
|
|
260
|
-
"""Sets the gcp_bucket_name of this V1Project.
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
:param gcp_bucket_name: The gcp_bucket_name of this V1Project. # noqa: E501
|
|
264
|
-
:type: str
|
|
265
|
-
"""
|
|
266
|
-
|
|
267
|
-
self._gcp_bucket_name = gcp_bucket_name
|
|
268
|
-
|
|
269
243
|
@property
|
|
270
244
|
def id(self) -> 'str':
|
|
271
245
|
"""Gets the id of this V1Project. # noqa: E501
|
|
@@ -112,6 +112,7 @@ class V1UserFeatures(object):
|
|
|
112
112
|
'project_selector': 'bool',
|
|
113
113
|
'publish_pipelines': 'bool',
|
|
114
114
|
'r2_data_connections': 'bool',
|
|
115
|
+
'reserved_machines_tab': 'bool',
|
|
115
116
|
'restartable_jobs': 'bool',
|
|
116
117
|
'runnable_public_studio_page': 'bool',
|
|
117
118
|
'security_docs': 'bool',
|
|
@@ -205,6 +206,7 @@ class V1UserFeatures(object):
|
|
|
205
206
|
'project_selector': 'projectSelector',
|
|
206
207
|
'publish_pipelines': 'publishPipelines',
|
|
207
208
|
'r2_data_connections': 'r2DataConnections',
|
|
209
|
+
'reserved_machines_tab': 'reservedMachinesTab',
|
|
208
210
|
'restartable_jobs': 'restartableJobs',
|
|
209
211
|
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
210
212
|
'security_docs': 'securityDocs',
|
|
@@ -226,7 +228,7 @@ class V1UserFeatures(object):
|
|
|
226
228
|
'weka': 'weka'
|
|
227
229
|
}
|
|
228
230
|
|
|
229
|
-
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None, big_default_cpus: 'bool' =None, byoc_litcr: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_requests_tab: 'bool' =None, dgx_cloud: 'bool' =None, docs_agent: 'bool' =None, down_switch_machine: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, gcs_folders: 'bool' =None, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, manage_storage_costs: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_folders: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nebius: 'bool' =None, neocloud_studios: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, paygo_free_storage_limit_check: 'bool' =None, pipelines: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, r2_data_connections: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, seoul_aws_region: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
231
|
+
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None, big_default_cpus: 'bool' =None, byoc_litcr: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_requests_tab: 'bool' =None, dgx_cloud: 'bool' =None, docs_agent: 'bool' =None, down_switch_machine: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, gcs_folders: 'bool' =None, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, manage_storage_costs: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_folders: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nebius: 'bool' =None, neocloud_studios: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, paygo_free_storage_limit_check: 'bool' =None, pipelines: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, r2_data_connections: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, seoul_aws_region: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
230
232
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
231
233
|
self._affiliate_links = None
|
|
232
234
|
self._agents_v2 = None
|
|
@@ -299,6 +301,7 @@ class V1UserFeatures(object):
|
|
|
299
301
|
self._project_selector = None
|
|
300
302
|
self._publish_pipelines = None
|
|
301
303
|
self._r2_data_connections = None
|
|
304
|
+
self._reserved_machines_tab = None
|
|
302
305
|
self._restartable_jobs = None
|
|
303
306
|
self._runnable_public_studio_page = None
|
|
304
307
|
self._security_docs = None
|
|
@@ -461,6 +464,8 @@ class V1UserFeatures(object):
|
|
|
461
464
|
self.publish_pipelines = publish_pipelines
|
|
462
465
|
if r2_data_connections is not None:
|
|
463
466
|
self.r2_data_connections = r2_data_connections
|
|
467
|
+
if reserved_machines_tab is not None:
|
|
468
|
+
self.reserved_machines_tab = reserved_machines_tab
|
|
464
469
|
if restartable_jobs is not None:
|
|
465
470
|
self.restartable_jobs = restartable_jobs
|
|
466
471
|
if runnable_public_studio_page is not None:
|
|
@@ -1991,6 +1996,27 @@ class V1UserFeatures(object):
|
|
|
1991
1996
|
|
|
1992
1997
|
self._r2_data_connections = r2_data_connections
|
|
1993
1998
|
|
|
1999
|
+
@property
|
|
2000
|
+
def reserved_machines_tab(self) -> 'bool':
|
|
2001
|
+
"""Gets the reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
:return: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
2005
|
+
:rtype: bool
|
|
2006
|
+
"""
|
|
2007
|
+
return self._reserved_machines_tab
|
|
2008
|
+
|
|
2009
|
+
@reserved_machines_tab.setter
|
|
2010
|
+
def reserved_machines_tab(self, reserved_machines_tab: 'bool'):
|
|
2011
|
+
"""Sets the reserved_machines_tab of this V1UserFeatures.
|
|
2012
|
+
|
|
2013
|
+
|
|
2014
|
+
:param reserved_machines_tab: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
2015
|
+
:type: bool
|
|
2016
|
+
"""
|
|
2017
|
+
|
|
2018
|
+
self._reserved_machines_tab = reserved_machines_tab
|
|
2019
|
+
|
|
1994
2020
|
@property
|
|
1995
2021
|
def restartable_jobs(self) -> 'bool':
|
|
1996
2022
|
"""Gets the restartable_jobs of this V1UserFeatures. # noqa: E501
|
lightning_sdk/llm/llm.py
CHANGED
|
@@ -184,7 +184,6 @@ class LLM:
|
|
|
184
184
|
metadata: Optional[Dict[str, str]] = None,
|
|
185
185
|
stream: bool = False,
|
|
186
186
|
upload_local_images: bool = False,
|
|
187
|
-
internal_conversation: bool = False,
|
|
188
187
|
) -> Union[str, Generator[str, None, None]]:
|
|
189
188
|
if conversation and conversation not in self._conversations:
|
|
190
189
|
self._get_conversations()
|
|
@@ -210,7 +209,6 @@ class LLM:
|
|
|
210
209
|
metadata=metadata,
|
|
211
210
|
name=conversation,
|
|
212
211
|
stream=stream,
|
|
213
|
-
internal_conversation=internal_conversation,
|
|
214
212
|
)
|
|
215
213
|
if not stream:
|
|
216
214
|
if conversation and not conversation_id:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
docs/source/conf.py,sha256=r8yX20eC-4mHhMTd0SbQb5TlSWHhO6wnJ0VJ_FBFpag,13249
|
|
2
|
-
lightning_sdk/__init__.py,sha256=
|
|
2
|
+
lightning_sdk/__init__.py,sha256=1RuxY7qxJcHaSTzrP5dJASqTW8Xt9PB49avSXaGBBoA,1105
|
|
3
3
|
lightning_sdk/agents.py,sha256=ly6Ma1j0ZgGPFyvPvMN28JWiB9dATIstFa5XM8pMi6I,1577
|
|
4
4
|
lightning_sdk/ai_hub.py,sha256=iI1vNhgcz_Ff1c3rN1ogN7dK-r-HXRj6NMtS2cA14UA,6925
|
|
5
5
|
lightning_sdk/base_studio.py,sha256=-ZnnZl5fG4w3BOQAelQndg7wEao2jGxpaYrpujlB7OQ,3353
|
|
@@ -25,7 +25,7 @@ lightning_sdk/api/deployment_api.py,sha256=8ZH2q08oc2jnPlPEBwZXmtv4DyHRZ9BnK1FxR
|
|
|
25
25
|
lightning_sdk/api/job_api.py,sha256=_mMAI_BG_48i-BLwCP_U72zgmM5zYa2KUZ7u66HWkIc,13568
|
|
26
26
|
lightning_sdk/api/license_api.py,sha256=ty-2X7l7hlaiCtA1KV4fFzL7vPS11CTUOuk28-nNobI,1568
|
|
27
27
|
lightning_sdk/api/lit_container_api.py,sha256=jCJVwd-3MNjejL9FyvH89pzt-SeG3G8qCJD16iTMJAQ,11454
|
|
28
|
-
lightning_sdk/api/llm_api.py,sha256=
|
|
28
|
+
lightning_sdk/api/llm_api.py,sha256=1mk2gbaQ3iinV7BsNc31Nf-iRdUwPWDsl8qf4PsAads,5208
|
|
29
29
|
lightning_sdk/api/mmt_api.py,sha256=-v7ATab-ThAM-HRClS92Ehxuu9MlBfdKWWFCGvVUHiM,8962
|
|
30
30
|
lightning_sdk/api/org_api.py,sha256=Ze3z_ATVrukobujV5YdC42DKj45Vuwl7X52q_Vr-o3U,803
|
|
31
31
|
lightning_sdk/api/pipeline_api.py,sha256=P5P9C6qOpyBGU0t5N68h1LuFAsAKmPPgkac6uObrYKw,1676
|
|
@@ -615,7 +615,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py,sha256=4agu
|
|
|
615
615
|
lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py,sha256=igCbjaeZXEbiPAa9cUjwG4cPUivt-7MiiWYikELHwsw,9983
|
|
616
616
|
lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py,sha256=0k1scTY1IAeKr3p0r7eV_xWRE7Nx54doTGygiQQPkbM,6879
|
|
617
617
|
lightning_sdk/lightning_cloud/openapi/models/v1_git_credentials.py,sha256=siIFxkpP0VVU53XVSj9ZHB3JWvUr9qOFliSDDx28i-g,6705
|
|
618
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py,sha256=
|
|
618
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py,sha256=x9LFc6NuL8yleoHmDlDinzNgmeOLwY6ElQs1xeoOTv4,16867
|
|
619
619
|
lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1_status.py,sha256=Md6rMiUCMY4oDVE2IYaALD_I0o2PQIKF-9628IGmTyY,3791
|
|
620
620
|
lightning_sdk/lightning_cloud/openapi/models/v1_gpu_system_metrics.py,sha256=io_MkTCTYi6qmYw8KqFZf2zHx8jgBsPKsEwqjr2BG0U,7722
|
|
621
621
|
lightning_sdk/lightning_cloud/openapi/models/v1_header.py,sha256=6GR8AL-UcMa3mH-PLtd7WWDZiG0Zi3AYKFw19AAasZc,4831
|
|
@@ -845,7 +845,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py,sha256=OYQVxl
|
|
|
845
845
|
lightning_sdk/lightning_cloud/openapi/models/v1_product_license_check_response.py,sha256=YM5WnVoNLg6kxxkNEGOosmfzBWqiS4WyxgOJvOdZTVk,3757
|
|
846
846
|
lightning_sdk/lightning_cloud/openapi/models/v1_profiler_capture.py,sha256=vtZLSdmLUawWwUHgfGwW6-zNgOCN6GOs7rGU99I8Yxk,10312
|
|
847
847
|
lightning_sdk/lightning_cloud/openapi/models/v1_profiler_enabled_response.py,sha256=z-5iw130qv54DZFTAXE4t9VeMsME_2aoKC1zXi4koQA,3757
|
|
848
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_project.py,sha256=
|
|
848
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_project.py,sha256=m0m1BsTd6KoEboNGvLV_5vqJ5a4E9UOR3bX-jQtU_hM,15644
|
|
849
849
|
lightning_sdk/lightning_cloud/openapi/models/v1_project_artifact.py,sha256=jMg7BHIX29bYQUK5VPHS7OXJlsZ8RvdIE9trNH5YXHU,6642
|
|
850
850
|
lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py,sha256=0AIT0Yp0F-yF1ogKzNEz9o9JKXzlWFLEyZXcAiPdvXE,9403
|
|
851
851
|
lightning_sdk/lightning_cloud/openapi/models/v1_project_compute_daily_usage.py,sha256=92qqkHCx9gfZCg7FGVn7TDMQjuHw5E0POtLC7HoQ9pE,6565
|
|
@@ -994,7 +994,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_upstream_open_ai.py,sha256=jt1qQ
|
|
|
994
994
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage.py,sha256=Z5cZrO1keYqrrUnvx5NSt5K-4-pGsUtqvTKn65_1oAk,14329
|
|
995
995
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage_details.py,sha256=U7qC698Xj5tb3D93ZskG6sDf3lTXE13UTlGeDTvtRU4,14062
|
|
996
996
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py,sha256=k9pDp9UIaOEEWz6bTNWF_KMfcNCOp-F67N-IZ9MO2Rs,8304
|
|
997
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py,sha256=
|
|
997
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py,sha256=mCQBUjiRwbn77Plp5AOov8f0YCY6QT7lSf6hv8WoP9E,81939
|
|
998
998
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py,sha256=0fnZpdhxNRXGNyILHtfm3rVztfHpSF4kXGc5kTt4zls,13960
|
|
999
999
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py,sha256=3WpZ-lf7xPwuYyQDMdP7Uc6-dh3vf5TaaUlcMfesfMk,5208
|
|
1000
1000
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_slurm_job_action_response.py,sha256=BdNzXH8Vsf5PHjl9Rd-TVkpAgx1YC9rf8LD0js-ba20,3058
|
|
@@ -1035,7 +1035,7 @@ lightning_sdk/lightning_cloud/utils/dataset.py,sha256=4nUspe8iAaRPgSYpXA2uAQCgyd
|
|
|
1035
1035
|
lightning_sdk/lightning_cloud/utils/name_generator.py,sha256=MkciuA10332V0mcE2PxLIiwWomWE0Fm_gNGK01vwRr4,58046
|
|
1036
1036
|
lightning_sdk/lightning_cloud/utils/network.py,sha256=axPgl8rhyPcPjxiztDxyksfxax3VNg2OXL5F5Uc81b4,406
|
|
1037
1037
|
lightning_sdk/llm/__init__.py,sha256=ErZva0HqN2iPtK_6hI6GN7A_HPGNrHo3wYh7vyFdO3Q,57
|
|
1038
|
-
lightning_sdk/llm/llm.py,sha256=
|
|
1038
|
+
lightning_sdk/llm/llm.py,sha256=kS6NSDywqbhkkluxZYOaKSgBjxGm6xvwtwPUp0m1SsQ,10667
|
|
1039
1039
|
lightning_sdk/mmt/__init__.py,sha256=ExMu90-96bGBnyp5h0CErQszUGB1-PcjC4-R8_NYbeY,117
|
|
1040
1040
|
lightning_sdk/mmt/base.py,sha256=B3HC-c82bPHprEZh1mhLCPCrCE8BOKqwIhY7xCF9CXg,15152
|
|
1041
1041
|
lightning_sdk/mmt/mmt.py,sha256=swdGP1DOM42a_QmmY1vg3--6ZBDiC4zToAzU9Eycv4U,13446
|
|
@@ -1054,9 +1054,9 @@ lightning_sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
1054
1054
|
lightning_sdk/utils/dynamic.py,sha256=glUTO1JC9APtQ6Gr9SO02a3zr56-sPAXM5C3NrTpgyQ,1959
|
|
1055
1055
|
lightning_sdk/utils/enum.py,sha256=h2JRzqoBcSlUdanFHmkj_j5DleBHAu1esQYUsdNI-hU,4106
|
|
1056
1056
|
lightning_sdk/utils/resolve.py,sha256=6qlBUkOmcFTjhQx_CAGfnvWBbMYp6XrCV_sX_IqplLE,6748
|
|
1057
|
-
lightning_sdk-0.2.
|
|
1058
|
-
lightning_sdk-0.2.
|
|
1059
|
-
lightning_sdk-0.2.
|
|
1060
|
-
lightning_sdk-0.2.
|
|
1061
|
-
lightning_sdk-0.2.
|
|
1062
|
-
lightning_sdk-0.2.
|
|
1057
|
+
lightning_sdk-0.2.18.dist-info/LICENSE,sha256=uFIuZwj5z-4TeF2UuacPZ1o17HkvKObT8fY50qN84sg,1064
|
|
1058
|
+
lightning_sdk-0.2.18.dist-info/METADATA,sha256=TEonV2ZuJoHfFyOZjqm7zc-5vXRgviyR43TxC031Gu4,3992
|
|
1059
|
+
lightning_sdk-0.2.18.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
1060
|
+
lightning_sdk-0.2.18.dist-info/entry_points.txt,sha256=msB9PJWIJ784dX-OP8by51d4IbKYH3Fj1vCuA9oXjHY,68
|
|
1061
|
+
lightning_sdk-0.2.18.dist-info/top_level.txt,sha256=ps8doKILFXmN7F1mHncShmnQoTxKBRPIcchC8TpoBw4,19
|
|
1062
|
+
lightning_sdk-0.2.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|