hiddenlayer-sdk 2.0.7__py3-none-any.whl → 2.0.9__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.
@@ -2392,7 +2392,7 @@ class ModelSupplyChainApi:
2392
2392
  @validate_call
2393
2393
  def get_scan_results1(
2394
2394
  self,
2395
- scan_id: Optional[StrictStr] = None,
2395
+ scan_id: StrictStr,
2396
2396
  cursor: Optional[StrictStr] = None,
2397
2397
  page_size: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
2398
2398
  _request_timeout: Union[
@@ -2411,7 +2411,7 @@ class ModelSupplyChainApi:
2411
2411
  """Retrieve Model Scan Results
2412
2412
 
2413
2413
 
2414
- :param scan_id:
2414
+ :param scan_id: (required)
2415
2415
  :type scan_id: str
2416
2416
  :param cursor:
2417
2417
  :type cursor: str
@@ -2469,7 +2469,7 @@ class ModelSupplyChainApi:
2469
2469
  @validate_call
2470
2470
  def get_scan_results1_with_http_info(
2471
2471
  self,
2472
- scan_id: Optional[StrictStr] = None,
2472
+ scan_id: StrictStr,
2473
2473
  cursor: Optional[StrictStr] = None,
2474
2474
  page_size: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
2475
2475
  _request_timeout: Union[
@@ -2488,7 +2488,7 @@ class ModelSupplyChainApi:
2488
2488
  """Retrieve Model Scan Results
2489
2489
 
2490
2490
 
2491
- :param scan_id:
2491
+ :param scan_id: (required)
2492
2492
  :type scan_id: str
2493
2493
  :param cursor:
2494
2494
  :type cursor: str
@@ -2546,7 +2546,7 @@ class ModelSupplyChainApi:
2546
2546
  @validate_call
2547
2547
  def get_scan_results1_without_preload_content(
2548
2548
  self,
2549
- scan_id: Optional[StrictStr] = None,
2549
+ scan_id: StrictStr,
2550
2550
  cursor: Optional[StrictStr] = None,
2551
2551
  page_size: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
2552
2552
  _request_timeout: Union[
@@ -2565,7 +2565,7 @@ class ModelSupplyChainApi:
2565
2565
  """Retrieve Model Scan Results
2566
2566
 
2567
2567
 
2568
- :param scan_id:
2568
+ :param scan_id: (required)
2569
2569
  :type scan_id: str
2570
2570
  :param cursor:
2571
2571
  :type cursor: str
@@ -50,8 +50,8 @@ class FileDetailsV3(BaseModel):
50
50
  @field_validator('sha256')
51
51
  def sha256_validate_regular_expression(cls, value):
52
52
  """Validates the regular expression"""
53
- if not re.match(r"^[a-fA-F0-9]{64}$", value):
54
- raise ValueError(r"must validate the regular expression /^[a-fA-F0-9]{64}$/")
53
+ if not re.match(r"^$|^[a-fA-F0-9]{64}$", value):
54
+ raise ValueError(r"must validate the regular expression /^$|^[a-fA-F0-9]{64}$/")
55
55
  return value
56
56
 
57
57
  @field_validator('tlsh')
@@ -17,7 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, StrictStr
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
@@ -32,7 +32,9 @@ class InventoryV3(BaseModel):
32
32
  model_version: Optional[StrictStr] = None
33
33
  model_version_id: Optional[StrictStr] = None
34
34
  requesting_entity: Optional[StrictStr] = None
35
- __properties: ClassVar[List[str]] = ["requested_scan_location", "model_name", "model_source", "model_version", "model_version_id", "requesting_entity"]
35
+ request_source: Optional[StrictStr] = Field(default=None, description="Identifies the system that requested the scan")
36
+ origin: Optional[StrictStr] = Field(default=None, description="Specifies the platform or service where the model originated before being scanned")
37
+ __properties: ClassVar[List[str]] = ["requested_scan_location", "model_name", "model_source", "model_version", "model_version_id", "requesting_entity", "request_source", "origin"]
36
38
 
37
39
  model_config = ConfigDict(
38
40
  populate_by_name=True,
@@ -90,7 +92,9 @@ class InventoryV3(BaseModel):
90
92
  "model_source": obj.get("model_source"),
91
93
  "model_version": obj.get("model_version"),
92
94
  "model_version_id": obj.get("model_version_id"),
93
- "requesting_entity": obj.get("requesting_entity")
95
+ "requesting_entity": obj.get("requesting_entity"),
96
+ "request_source": obj.get("request_source"),
97
+ "origin": obj.get("origin")
94
98
  })
95
99
  return _obj
96
100
 
@@ -31,9 +31,11 @@ class ModelInventoryInfo(BaseModel):
31
31
  model_source: Optional[StrictStr] = Field(default=None, description="source (provider) info")
32
32
  requested_scan_location: StrictStr = Field(description="Location to be scanned")
33
33
  requesting_entity: Optional[StrictStr] = Field(default=None, description="Entity that requested the scan")
34
+ request_source: Optional[StrictStr] = Field(default=None, description="Source of the request")
35
+ origin: Optional[StrictStr] = Field(default=None, description="Origin of the scan")
34
36
  model_id: StrictStr = Field(description="Unique identifier for the model")
35
37
  model_version_id: StrictStr = Field(description="unique identifier for the model version")
36
- __properties: ClassVar[List[str]] = ["model_name", "model_version", "model_source", "requested_scan_location", "requesting_entity", "model_id", "model_version_id"]
38
+ __properties: ClassVar[List[str]] = ["model_name", "model_version", "model_source", "requested_scan_location", "requesting_entity", "request_source", "origin", "model_id", "model_version_id"]
37
39
 
38
40
  model_config = ConfigDict(
39
41
  populate_by_name=True,
@@ -91,6 +93,8 @@ class ModelInventoryInfo(BaseModel):
91
93
  "model_source": obj.get("model_source"),
92
94
  "requested_scan_location": obj.get("requested_scan_location"),
93
95
  "requesting_entity": obj.get("requesting_entity"),
96
+ "request_source": obj.get("request_source"),
97
+ "origin": obj.get("origin"),
94
98
  "model_id": obj.get("model_id"),
95
99
  "model_version_id": obj.get("model_version_id")
96
100
  })
@@ -30,7 +30,9 @@ class MultiFileUploadRequestV3(BaseModel):
30
30
  model_name: StrictStr = Field(description="Model name")
31
31
  requesting_entity: StrictStr = Field(description="Requesting entity")
32
32
  location_alias: Optional[StrictStr] = Field(default=None, description="Requested location alias")
33
- __properties: ClassVar[List[str]] = ["model_version", "model_name", "requesting_entity", "location_alias"]
33
+ request_source: Optional[StrictStr] = Field(default=None, description="Identifies the system that requested the scan")
34
+ origin: Optional[StrictStr] = Field(default=None, description="Specifies the platform or service where the model originated before being scanned")
35
+ __properties: ClassVar[List[str]] = ["model_version", "model_name", "requesting_entity", "location_alias", "request_source", "origin"]
34
36
 
35
37
  model_config = ConfigDict(
36
38
  populate_by_name=True,
@@ -86,7 +88,9 @@ class MultiFileUploadRequestV3(BaseModel):
86
88
  "model_version": obj.get("model_version"),
87
89
  "model_name": obj.get("model_name"),
88
90
  "requesting_entity": obj.get("requesting_entity"),
89
- "location_alias": obj.get("location_alias")
91
+ "location_alias": obj.get("location_alias"),
92
+ "request_source": obj.get("request_source"),
93
+ "origin": obj.get("origin")
90
94
  })
91
95
  return _obj
92
96
 
@@ -31,7 +31,9 @@ class ScanModelDetailsV3(BaseModel):
31
31
  model_source: Optional[StrictStr] = Field(default=None, description="source (provider) info")
32
32
  requested_scan_location: StrictStr = Field(description="Location to be scanned")
33
33
  requesting_entity: Optional[StrictStr] = Field(default=None, description="Entity that requested the scan")
34
- __properties: ClassVar[List[str]] = ["model_name", "model_version", "model_source", "requested_scan_location", "requesting_entity"]
34
+ request_source: Optional[StrictStr] = Field(default=None, description="Source of the request")
35
+ origin: Optional[StrictStr] = Field(default=None, description="Origin of the scan")
36
+ __properties: ClassVar[List[str]] = ["model_name", "model_version", "model_source", "requested_scan_location", "requesting_entity", "request_source", "origin"]
35
37
 
36
38
  model_config = ConfigDict(
37
39
  populate_by_name=True,
@@ -88,7 +90,9 @@ class ScanModelDetailsV3(BaseModel):
88
90
  "model_version": obj.get("model_version"),
89
91
  "model_source": obj.get("model_source"),
90
92
  "requested_scan_location": obj.get("requested_scan_location"),
91
- "requesting_entity": obj.get("requesting_entity")
93
+ "requesting_entity": obj.get("requesting_entity"),
94
+ "request_source": obj.get("request_source"),
95
+ "origin": obj.get("origin")
92
96
  })
93
97
  return _obj
94
98
 
@@ -18,7 +18,7 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
- from typing import Any, ClassVar, Dict, List
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
24
24
 
@@ -30,7 +30,9 @@ class ScanModelDetailsV31(BaseModel):
30
30
  model_version: StrictStr = Field(description="If you do not provide a version, one will be generated for you.")
31
31
  requested_scan_location: StrictStr = Field(description="Location to be scanned")
32
32
  requesting_entity: StrictStr = Field(description="Entity that requested the scan")
33
- __properties: ClassVar[List[str]] = ["model_name", "model_version", "requested_scan_location", "requesting_entity"]
33
+ request_source: Optional[StrictStr] = Field(default=None, description="Identifies the system that requested the scan")
34
+ origin: Optional[StrictStr] = Field(default=None, description="Specifies the platform or service where the model originated before being scanned")
35
+ __properties: ClassVar[List[str]] = ["model_name", "model_version", "requested_scan_location", "requesting_entity", "request_source", "origin"]
34
36
 
35
37
  model_config = ConfigDict(
36
38
  populate_by_name=True,
@@ -86,7 +88,9 @@ class ScanModelDetailsV31(BaseModel):
86
88
  "model_name": obj.get("model_name"),
87
89
  "model_version": obj.get("model_version"),
88
90
  "requested_scan_location": obj.get("requested_scan_location"),
89
- "requesting_entity": obj.get("requesting_entity")
91
+ "requesting_entity": obj.get("requesting_entity"),
92
+ "request_source": obj.get("request_source"),
93
+ "origin": obj.get("origin")
90
94
  })
91
95
  return _obj
92
96
 
@@ -48,6 +48,8 @@ class ModelScanAPI:
48
48
  model_source: CommunityScanSource,
49
49
  model_version: str = "main",
50
50
  wait_for_results: bool = True,
51
+ request_source="API Upload",
52
+ origin: str = "",
51
53
  ) -> ScanResults:
52
54
  """
53
55
  Scan a model available at a remote location using the HiddenLayer Model Scanner.
@@ -67,6 +69,8 @@ class ModelScanAPI:
67
69
  model_version=model_version,
68
70
  requested_scan_location=model_path,
69
71
  requesting_entity="hiddenlayer-python-sdk",
72
+ request_source=request_source,
73
+ origin=origin,
70
74
  ),
71
75
  )
72
76
  result = self._model_supply_chain_api.create_scan_job(scan_job)
@@ -85,6 +89,8 @@ class ModelScanAPI:
85
89
  model_path: Union[str, os.PathLike],
86
90
  model_version: str = "1",
87
91
  wait_for_results: bool = True,
92
+ request_source="API Upload",
93
+ origin: str = "",
88
94
  ) -> ScanResults:
89
95
  """
90
96
  Scan a local model file using the HiddenLayer Model Scanner.
@@ -104,6 +110,8 @@ class ModelScanAPI:
104
110
  model_name=model_name,
105
111
  model_version=model_version,
106
112
  requesting_entity="hiddenlayer-python-sdk",
113
+ request_source=request_source,
114
+ origin=origin,
107
115
  )
108
116
  response = self._model_supply_chain_api.begin_multi_file_upload(
109
117
  multi_file_upload_request_v3=request
@@ -130,6 +138,7 @@ class ModelScanAPI:
130
138
  model_version: str = "1",
131
139
  s3_client: Optional[object] = None,
132
140
  wait_for_results: bool = True,
141
+ request_source="API Upload",
133
142
  ) -> ScanResults:
134
143
  """
135
144
  Scan a model file on S3.
@@ -174,6 +183,8 @@ class ModelScanAPI:
174
183
  model_name=model_name,
175
184
  model_version=model_version,
176
185
  wait_for_results=wait_for_results,
186
+ request_source=request_source,
187
+ origin="S3",
177
188
  )
178
189
 
179
190
  def scan_azure_blob_model(
@@ -187,6 +198,7 @@ class ModelScanAPI:
187
198
  blob_service_client: Optional[object] = None,
188
199
  credential: Optional[object] = None,
189
200
  wait_for_results: bool = True,
201
+ request_source="API Upload",
190
202
  ) -> ScanResults:
191
203
  """
192
204
  Scan a model file on Azure Blob Storage.
@@ -252,6 +264,8 @@ class ModelScanAPI:
252
264
  model_name=model_name,
253
265
  model_version=model_version,
254
266
  wait_for_results=wait_for_results,
267
+ request_source=request_source,
268
+ origin="Azure Blob Storage",
255
269
  )
256
270
 
257
271
  def scan_huggingface_model(
@@ -268,6 +282,7 @@ class ModelScanAPI:
268
282
  force_download: bool = False,
269
283
  hf_token: Optional[Union[str, bool]] = None,
270
284
  wait_for_results: bool = True,
285
+ request_source="API Upload",
271
286
  ) -> ScanResults:
272
287
  """
273
288
  Scans a model on HuggingFace.
@@ -322,6 +337,8 @@ class ModelScanAPI:
322
337
  allow_file_patterns=allow_file_patterns,
323
338
  ignore_file_patterns=ignore_file_patterns,
324
339
  wait_for_results=wait_for_results,
340
+ request_source=request_source,
341
+ origin="Hugging Face",
325
342
  )
326
343
 
327
344
  def get_scan_results(self, *, scan_id: str) -> ScanResults:
@@ -390,6 +407,8 @@ class ModelScanAPI:
390
407
  allow_file_patterns: Optional[List[str]] = None,
391
408
  ignore_file_patterns: Optional[List[str]] = None,
392
409
  wait_for_results: bool = True,
410
+ request_source="API Upload",
411
+ origin: str = "",
393
412
  ) -> ScanResults:
394
413
  """
395
414
  Submits all files in a directory and its sub directories to be scanned.
@@ -411,6 +430,8 @@ class ModelScanAPI:
411
430
  model_name=model_name,
412
431
  model_version=model_version,
413
432
  requesting_entity="hiddenlayer-python-sdk",
433
+ request_source=request_source,
434
+ origin=origin,
414
435
  )
415
436
  response = self._model_supply_chain_api.begin_multi_file_upload(
416
437
  multi_file_upload_request_v3=request
@@ -1 +1 @@
1
- VERSION = "2.0.7"
1
+ VERSION = "2.0.9"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hiddenlayer-sdk
3
- Version: 2.0.7
3
+ Version: 2.0.9
4
4
  Summary: Official HiddenLayer Python SDK
5
5
  Author-email: HiddenLayer Integrations Team <integrations@hiddenlayer.com>
6
6
  Maintainer-email: HiddenLayer Integrations Team <integrations@hiddenlayer.com>
@@ -4,7 +4,7 @@ hiddenlayer/sdk/constants.py,sha256=BytOHlVWk6lhWB4bpT7kDj3ctozZA9ftaB2D6lSGtGI,
4
4
  hiddenlayer/sdk/exceptions.py,sha256=_Lelwk32LWxWuUPglfw8R8RuiX_Uxm_N7TP3BLhDLz0,226
5
5
  hiddenlayer/sdk/models.py,sha256=t92fK7xxuPm1XzazNsRg5AOAD17qnvNZiGaN1gM6lHk,1776
6
6
  hiddenlayer/sdk/utils.py,sha256=Ntao8hfsYuB7obZOanayIlrgJ98IWcPhs3sRi39IDkg,2997
7
- hiddenlayer/sdk/version.py,sha256=P3xkxiU2SjdsjCR_fMhXDUtoWheuX3suVT8TGRznCoY,18
7
+ hiddenlayer/sdk/version.py,sha256=9zdZxRl8O2qHNd6ODlMvhcT8F7Yih0dfZ-hrlbigSx0,18
8
8
  hiddenlayer/sdk/rest/__init__.py,sha256=fL2dURfsADiHHxdxxbUyjrqQi5BPRVdd9p51XPrJhks,8499
9
9
  hiddenlayer/sdk/rest/api_client.py,sha256=Yd71Up1SHj5pPp4jB_gIsm5Y77jHph7T4iU9NiIhUak,26291
10
10
  hiddenlayer/sdk/rest/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
@@ -15,7 +15,7 @@ hiddenlayer/sdk/rest/api/__init__.py,sha256=dKrlNcnraOo_qcSNtyz4GYkS79YGkEcg8__T
15
15
  hiddenlayer/sdk/rest/api/aidr_predictive_api.py,sha256=_XBrwv2SjK9rsNyFuUQARMs4iplVigmRyDEZAo3Fm5k,11316
16
16
  hiddenlayer/sdk/rest/api/health_api.py,sha256=OO-snu3VvpBJWseRi4wdjk6poh5U1_t7WZf5V116wzE,10024
17
17
  hiddenlayer/sdk/rest/api/model_api.py,sha256=yZ3Rn-Sv5StPDDtrGPGtab8YqDxkWLph6bHuZEwUAs4,20107
18
- hiddenlayer/sdk/rest/api/model_supply_chain_api.py,sha256=WmxcEGZ6IBacNsmkj0Yf47D74k6HhHnKapO4tPhubRI,159295
18
+ hiddenlayer/sdk/rest/api/model_supply_chain_api.py,sha256=xoO6_9XmIxTJ6as98x1JmIfXVllrVjmaV5BkhuLxskM,159277
19
19
  hiddenlayer/sdk/rest/api/readiness_api.py,sha256=PL3iDhS25SDmUmreLLlcEy1r6_iGrY8ejrZqPDqXwEc,10060
20
20
  hiddenlayer/sdk/rest/api/sensor_api.py,sha256=L5ZaEfvNublZbcUsL_LHsj2IV4DGr4lVfnHl6wsESkQ,55425
21
21
  hiddenlayer/sdk/rest/models/__init__.py,sha256=Df9k4U_TOqWPBvCp2rjpYIehk44YFjjWPXvPz-tHfH4,7510
@@ -39,7 +39,7 @@ hiddenlayer/sdk/rest/models/exception.py,sha256=rFQURMGsyY_dTf-zIfdyO_Dx5o7UzA1L
39
39
  hiddenlayer/sdk/rest/models/external_properties.py,sha256=Ln_zOrhgBNBFbqiEYD_JLfVtJyV8hWwWvenfJYt7QC4,15549
40
40
  hiddenlayer/sdk/rest/models/external_property_file_reference.py,sha256=MqVR4qOy3IBDEGBWpEAH2ehnP1W9dso-FJdFpviYwkc,3699
41
41
  hiddenlayer/sdk/rest/models/external_property_file_references.py,sha256=XR2xRE7n2FwxPvaO4AAaRqpDMFdn1o-SNa4qYTROX94,14734
42
- hiddenlayer/sdk/rest/models/file_details_v3.py,sha256=7oJzLYXiJ5OmRaYiajm94mHCi7XfIA21fUxz7F5ctWk,5056
42
+ hiddenlayer/sdk/rest/models/file_details_v3.py,sha256=3HKEOUA7B0mPXnaLHG-lpW3-KCdZT5rZaJ4l_s61Wzg,5062
43
43
  hiddenlayer/sdk/rest/models/file_result_v3.py,sha256=61C5htC-ZyYeDBSGJzYIvFy0xb4kDnnQ2clijYlLQjs,4088
44
44
  hiddenlayer/sdk/rest/models/file_scan_report_v3.py,sha256=XuAWthWZQfvik1yMctgpnkBVvf61MBr9kHO3DeZVibs,5136
45
45
  hiddenlayer/sdk/rest/models/file_scan_reports_v3.py,sha256=iknIvsV7eWi7-f-uYS8Oqgiz5IAVG8WyDDlMYeLNR5c,2954
@@ -47,7 +47,7 @@ hiddenlayer/sdk/rest/models/fix.py,sha256=YaigBB7v8YSRp4_1TKs45f96sIs2XsUHQXdjRp
47
47
  hiddenlayer/sdk/rest/models/get_condensed_model_scan_reports200_response.py,sha256=XKTEAiv21q1ah5ec6VRx_-2J8NyfbGOpSgCrjlDiN94,3610
48
48
  hiddenlayer/sdk/rest/models/graph.py,sha256=CS3NGVxqaZl-n7f1PMt6VGzEubAY5qKSMGa4ipJwzCk,4764
49
49
  hiddenlayer/sdk/rest/models/graph_traversal.py,sha256=XQmy0us7wSaOxeUc5dYeH2f02wjkWgr54mwMo20fL80,3835
50
- hiddenlayer/sdk/rest/models/inventory_v3.py,sha256=CM5-1-mucmxdhXnvxj5igqzBk_XP3fmc04GZKUjtojk,3078
50
+ hiddenlayer/sdk/rest/models/inventory_v3.py,sha256=4jGZSyK6K_jXND4aBC2PksgUC9W8gKPs940ckNJ-diU,3485
51
51
  hiddenlayer/sdk/rest/models/invocation.py,sha256=NTzgSAW05TsUKQMhlCNLl8OZiU1lWpoxKDf-LGoh8J4,13160
52
52
  hiddenlayer/sdk/rest/models/location.py,sha256=KcPalokp6VzRZvT1FZMrObx6eC08GGgG1qoHACFAnjs,6686
53
53
  hiddenlayer/sdk/rest/models/location_inner.py,sha256=k7he8hKddcvyjJHrC513c18JVV1dOWRMCZ7WpDhAr8I,4738
@@ -56,9 +56,9 @@ hiddenlayer/sdk/rest/models/logical_location.py,sha256=F-vZ6Ya8cvurh1pHF_DGIkvix
56
56
  hiddenlayer/sdk/rest/models/message.py,sha256=my3CLkfFwJV5gUgU_hw1mVuqAo7_5i61q-g75L64zhE,2975
57
57
  hiddenlayer/sdk/rest/models/mitre_atlas_inner.py,sha256=8jFDqr88ZgzuU8Je0OUCFL6YO5g1rEdaLEDAxV-Q-Vk,3476
58
58
  hiddenlayer/sdk/rest/models/model.py,sha256=ozRK8O9lijrPVs0Ahy8aFPzN4V5dFSYic3Yacx_cggs,3201
59
- hiddenlayer/sdk/rest/models/model_inventory_info.py,sha256=k9Fqt-coa50b5JAlYprGRU8Me-XixLo83ZXqmblsQTg,3532
59
+ hiddenlayer/sdk/rest/models/model_inventory_info.py,sha256=_x60bE1CMRUJPLhC614yFrnOS3pGTxxXYMBrr9YktHI,3845
60
60
  hiddenlayer/sdk/rest/models/model_version.py,sha256=siicFB14ozdgtkDooa_UkqhzcIPtFTwHwiu_reAyhR4,2953
61
- hiddenlayer/sdk/rest/models/multi_file_upload_request_v3.py,sha256=qybJ27-wfP0crD5p5r-LiMsKEdQj0iKUnB-pERBa4vk,2973
61
+ hiddenlayer/sdk/rest/models/multi_file_upload_request_v3.py,sha256=Wb_igq5Tp7l7J8OdcOG-E5pdCi6VpF_SZEFjFzuHzQA,3373
62
62
  hiddenlayer/sdk/rest/models/multiformat_message_string.py,sha256=eJS6TTQSbLg1S_xuL1R-ZXrLcK0Kny9odyH55-nczBU,3146
63
63
  hiddenlayer/sdk/rest/models/node.py,sha256=k2wEbU5018DJDLZ48xvzqxuPcdgtpkLRT5ZB3J-vc24,4510
64
64
  hiddenlayer/sdk/rest/models/notification.py,sha256=MPZRQSFMDprGdAL-BbWE1LFv4MpqWGrMEjmDtEUGqKI,7035
@@ -87,8 +87,8 @@ hiddenlayer/sdk/rest/models/scan_detection_v31.py,sha256=tTNRlggUmL-cY4ZRiC-2au6
87
87
  hiddenlayer/sdk/rest/models/scan_header_v3.py,sha256=sgpiAE6NflJtLJhfUA4NmveUCHTPQN2JSsk7cEBMjVQ,5035
88
88
  hiddenlayer/sdk/rest/models/scan_job.py,sha256=IADBv0WCXCZ8m2rUJ8Do7IPSc3aczICCdkLnz2g8FXs,3970
89
89
  hiddenlayer/sdk/rest/models/scan_job_access.py,sha256=Q9SWDj7u9ec5H03zlzPUeO_si1rxS_c7iL_YPc-FDxo,2956
90
- hiddenlayer/sdk/rest/models/scan_model_details_v3.py,sha256=KItM8K8oZASWFh1b8_5zWKuqmbX1UHdELCY7_MjrcTU,3177
91
- hiddenlayer/sdk/rest/models/scan_model_details_v31.py,sha256=7ykIhQz8OsgdIRmUkVs5RlgpBOuy_3Ztzs3Vi-puN0M,3023
90
+ hiddenlayer/sdk/rest/models/scan_model_details_v3.py,sha256=FD0-CkMv--IU8lzXZMbjqUV3u6smTIZ4wNyT6h5mFt8,3490
91
+ hiddenlayer/sdk/rest/models/scan_model_details_v31.py,sha256=QJMMKs3LRote3ufX2DBjo2OGqLpPiHH7UGZ1o0eO3hM,3433
92
92
  hiddenlayer/sdk/rest/models/scan_model_ids_v3.py,sha256=MzU_KNr5CXylDbakDOLv7qGz4naAJ2_56cuW9MATJpw,2639
93
93
  hiddenlayer/sdk/rest/models/scan_report_v3.py,sha256=n9oi5wXwdBNIKdPzg1-2wEOSilDARHalTMjTF6THtfg,5658
94
94
  hiddenlayer/sdk/rest/models/scan_results_map_v3.py,sha256=BQowU2WqGi0wlNqr9Oi3n_F-NEbfA4aPA-2QfdENwGQ,3363
@@ -118,9 +118,9 @@ hiddenlayer/sdk/rest/models/web_request.py,sha256=u9pmXP-NPDBKcW3ivNDa1I0i0vxQki
118
118
  hiddenlayer/sdk/rest/models/web_response.py,sha256=gSKHygOE25yvLKMk__Aga90cHfpFxWvmib1SwWGFTik,4704
119
119
  hiddenlayer/sdk/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
120
  hiddenlayer/sdk/services/aidr_predictive.py,sha256=S2MvN5qPyYhYXbYM3lvDmylhY71p4d07L36m-a1ZMyM,4773
121
- hiddenlayer/sdk/services/model_scan.py,sha256=tFqtMKaDl-oq2nSaqqOicK5sh3TqCk6hYP2-Zd5yNNY,18240
122
- hiddenlayer_sdk-2.0.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
123
- hiddenlayer_sdk-2.0.7.dist-info/METADATA,sha256=JzWg5V3dbxtToBp4GzVuEciOgEPPru7GFGw26dDDKhg,18153
124
- hiddenlayer_sdk-2.0.7.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
125
- hiddenlayer_sdk-2.0.7.dist-info/top_level.txt,sha256=8BxcmGvEN1RqsMvTWg9Q0vDmtBGcTmatnme6nzyPj2U,12
126
- hiddenlayer_sdk-2.0.7.dist-info/RECORD,,
121
+ hiddenlayer/sdk/services/model_scan.py,sha256=hJzvt8EjpJ4EKPnde_Mql-X8T32itIE2qUITSma6d3o,18988
122
+ hiddenlayer_sdk-2.0.9.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
123
+ hiddenlayer_sdk-2.0.9.dist-info/METADATA,sha256=mIK6RQqWp8cg-EHl5XeoO6YTYazq3bfMQSyuosu5OK8,18153
124
+ hiddenlayer_sdk-2.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
125
+ hiddenlayer_sdk-2.0.9.dist-info/top_level.txt,sha256=8BxcmGvEN1RqsMvTWg9Q0vDmtBGcTmatnme6nzyPj2U,12
126
+ hiddenlayer_sdk-2.0.9.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5