hiddenlayer-sdk 2.0.10__tar.gz → 3.0.0__tar.gz

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 (260) hide show
  1. hiddenlayer_sdk-3.0.0/.gitignore +15 -0
  2. hiddenlayer_sdk-3.0.0/.release-please-manifest.json +3 -0
  3. hiddenlayer_sdk-3.0.0/CHANGELOG.md +438 -0
  4. hiddenlayer_sdk-3.0.0/CODE_OF_CONDUCT.md +128 -0
  5. hiddenlayer_sdk-3.0.0/CONTRIBUTING.md +128 -0
  6. {hiddenlayer_sdk-2.0.10 → hiddenlayer_sdk-3.0.0}/LICENSE +1 -1
  7. hiddenlayer_sdk-3.0.0/PKG-INFO +431 -0
  8. hiddenlayer_sdk-3.0.0/README.md +393 -0
  9. hiddenlayer_sdk-3.0.0/SECURITY.md +19 -0
  10. hiddenlayer_sdk-3.0.0/api.md +311 -0
  11. hiddenlayer_sdk-3.0.0/bin/check-release-environment +21 -0
  12. hiddenlayer_sdk-3.0.0/bin/publish-jfrog +16 -0
  13. hiddenlayer_sdk-3.0.0/bin/publish-pypi +6 -0
  14. hiddenlayer_sdk-3.0.0/examples/.keep +4 -0
  15. hiddenlayer_sdk-3.0.0/noxfile.py +9 -0
  16. hiddenlayer_sdk-3.0.0/pyproject.toml +268 -0
  17. hiddenlayer_sdk-3.0.0/release-please-config.json +66 -0
  18. hiddenlayer_sdk-3.0.0/requirements-dev.lock +151 -0
  19. hiddenlayer_sdk-3.0.0/requirements.lock +89 -0
  20. hiddenlayer_sdk-3.0.0/src/hiddenlayer/__init__.py +109 -0
  21. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_base_client.py +1995 -0
  22. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_client.py +761 -0
  23. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_compat.py +219 -0
  24. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_constants.py +14 -0
  25. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_exceptions.py +108 -0
  26. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_files.py +123 -0
  27. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_models.py +835 -0
  28. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_oauth2.py +118 -0
  29. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_qs.py +150 -0
  30. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_resource.py +43 -0
  31. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_response.py +832 -0
  32. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_streaming.py +333 -0
  33. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_types.py +260 -0
  34. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/__init__.py +64 -0
  35. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_compat.py +45 -0
  36. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_datetime_parse.py +136 -0
  37. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_logs.py +25 -0
  38. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_proxy.py +65 -0
  39. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_reflection.py +42 -0
  40. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_resources_proxy.py +24 -0
  41. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_streams.py +12 -0
  42. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_sync.py +86 -0
  43. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_transform.py +457 -0
  44. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_typing.py +156 -0
  45. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_utils/_utils.py +421 -0
  46. hiddenlayer_sdk-3.0.0/src/hiddenlayer/_version.py +4 -0
  47. hiddenlayer_sdk-3.0.0/src/hiddenlayer/lib/.keep +4 -0
  48. hiddenlayer_sdk-3.0.0/src/hiddenlayer/lib/__init__.py +6 -0
  49. hiddenlayer_sdk-3.0.0/src/hiddenlayer/lib/community_scan.py +174 -0
  50. hiddenlayer_sdk-3.0.0/src/hiddenlayer/lib/model_scan.py +752 -0
  51. hiddenlayer_sdk-3.0.0/src/hiddenlayer/lib/scan_utils.py +142 -0
  52. hiddenlayer_sdk-3.0.0/src/hiddenlayer/pagination.py +127 -0
  53. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/__init__.py +75 -0
  54. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/interactions.py +205 -0
  55. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/models/__init__.py +33 -0
  56. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/models/cards.py +259 -0
  57. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/models/models.py +284 -0
  58. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/prompt_analyzer.py +207 -0
  59. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/__init__.py +61 -0
  60. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/jobs.py +499 -0
  61. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/results.py +169 -0
  62. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/scans.py +166 -0
  63. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/upload/__init__.py +33 -0
  64. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/upload/file.py +279 -0
  65. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/scans/upload/upload.py +340 -0
  66. hiddenlayer_sdk-3.0.0/src/hiddenlayer/resources/sensors.py +575 -0
  67. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/__init__.py +16 -0
  68. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/interaction_analyze_params.py +62 -0
  69. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/interaction_analyze_response.py +199 -0
  70. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/model_retrieve_response.py +50 -0
  71. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/models/__init__.py +6 -0
  72. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/models/card_list_params.py +65 -0
  73. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/models/card_list_response.py +50 -0
  74. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/prompt_analyzer_create_params.py +23 -0
  75. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/prompt_analyzer_create_response.py +381 -0
  76. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/__init__.py +14 -0
  77. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/job_list_params.py +75 -0
  78. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/job_list_response.py +22 -0
  79. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/job_request_params.py +49 -0
  80. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/job_retrieve_params.py +16 -0
  81. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/result_sarif_response.py +7 -0
  82. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/scan_job.py +46 -0
  83. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/scan_report.py +367 -0
  84. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload/__init__.py +6 -0
  85. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload/file_add_response.py +24 -0
  86. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload/file_complete_response.py +12 -0
  87. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload_complete_all_response.py +12 -0
  88. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload_start_params.py +34 -0
  89. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/scans/upload_start_response.py +12 -0
  90. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_create_params.py +24 -0
  91. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_create_response.py +33 -0
  92. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_query_params.py +39 -0
  93. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_query_response.py +43 -0
  94. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_retrieve_response.py +33 -0
  95. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_update_params.py +20 -0
  96. hiddenlayer_sdk-3.0.0/src/hiddenlayer/types/sensor_update_response.py +9 -0
  97. hiddenlayer_sdk-3.0.0/tests/__init__.py +1 -0
  98. hiddenlayer_sdk-3.0.0/tests/api_resources/__init__.py +1 -0
  99. hiddenlayer_sdk-3.0.0/tests/api_resources/models/__init__.py +1 -0
  100. hiddenlayer_sdk-3.0.0/tests/api_resources/models/test_cards.py +138 -0
  101. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/__init__.py +1 -0
  102. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/test_jobs.py +379 -0
  103. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/test_results.py +125 -0
  104. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/test_upload.py +234 -0
  105. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/upload/__init__.py +1 -0
  106. hiddenlayer_sdk-3.0.0/tests/api_resources/scans/upload/test_file.py +270 -0
  107. hiddenlayer_sdk-3.0.0/tests/api_resources/test_interactions.py +170 -0
  108. hiddenlayer_sdk-3.0.0/tests/api_resources/test_models.py +228 -0
  109. hiddenlayer_sdk-3.0.0/tests/api_resources/test_prompt_analyzer.py +118 -0
  110. hiddenlayer_sdk-3.0.0/tests/api_resources/test_sensors.py +532 -0
  111. hiddenlayer_sdk-3.0.0/tests/conftest.py +84 -0
  112. hiddenlayer_sdk-3.0.0/tests/sample_file.txt +1 -0
  113. hiddenlayer_sdk-3.0.0/tests/test_client.py +1737 -0
  114. hiddenlayer_sdk-3.0.0/tests/test_community_scan.py +275 -0
  115. hiddenlayer_sdk-3.0.0/tests/test_deepcopy.py +58 -0
  116. hiddenlayer_sdk-3.0.0/tests/test_extract_files.py +64 -0
  117. hiddenlayer_sdk-3.0.0/tests/test_files.py +51 -0
  118. hiddenlayer_sdk-3.0.0/tests/test_model_scan.py +492 -0
  119. hiddenlayer_sdk-3.0.0/tests/test_models.py +963 -0
  120. hiddenlayer_sdk-3.0.0/tests/test_qs.py +78 -0
  121. hiddenlayer_sdk-3.0.0/tests/test_required_args.py +111 -0
  122. hiddenlayer_sdk-3.0.0/tests/test_response.py +277 -0
  123. hiddenlayer_sdk-3.0.0/tests/test_streaming.py +252 -0
  124. hiddenlayer_sdk-3.0.0/tests/test_transform.py +460 -0
  125. hiddenlayer_sdk-3.0.0/tests/test_utils/test_datetime_parse.py +110 -0
  126. hiddenlayer_sdk-3.0.0/tests/test_utils/test_proxy.py +34 -0
  127. hiddenlayer_sdk-3.0.0/tests/test_utils/test_typing.py +73 -0
  128. hiddenlayer_sdk-3.0.0/tests/utils.py +167 -0
  129. hiddenlayer_sdk-2.0.10/PKG-INFO +0 -368
  130. hiddenlayer_sdk-2.0.10/README.md +0 -128
  131. hiddenlayer_sdk-2.0.10/hiddenlayer/__init__.py +0 -114
  132. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/constants.py +0 -26
  133. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/exceptions.py +0 -12
  134. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/models.py +0 -58
  135. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/__init__.py +0 -135
  136. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/__init__.py +0 -10
  137. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/aidr_predictive_api.py +0 -308
  138. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/health_api.py +0 -272
  139. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/model_api.py +0 -559
  140. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/model_supply_chain_api.py +0 -4063
  141. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/readiness_api.py +0 -272
  142. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api/sensor_api.py +0 -1432
  143. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api_client.py +0 -770
  144. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/api_response.py +0 -21
  145. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/configuration.py +0 -445
  146. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/exceptions.py +0 -199
  147. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/__init__.py +0 -113
  148. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/address.py +0 -110
  149. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/artifact.py +0 -155
  150. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/artifact_change.py +0 -108
  151. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/artifact_content.py +0 -101
  152. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/artifact_location.py +0 -109
  153. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/attachment.py +0 -129
  154. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/begin_multi_file_upload200_response.py +0 -87
  155. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/begin_multipart_file_upload200_response.py +0 -97
  156. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/begin_multipart_file_upload200_response_parts_inner.py +0 -94
  157. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/code_flow.py +0 -113
  158. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/configuration_override.py +0 -108
  159. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/conversion.py +0 -114
  160. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/create_sensor_request.py +0 -95
  161. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/edge.py +0 -108
  162. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/edge_traversal.py +0 -122
  163. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/errors_inner.py +0 -91
  164. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/exception.py +0 -113
  165. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/external_properties.py +0 -273
  166. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/external_property_file_reference.py +0 -102
  167. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/external_property_file_references.py +0 -240
  168. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/file_details_v3.py +0 -139
  169. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/file_result_v3.py +0 -117
  170. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/file_scan_report_v3.py +0 -132
  171. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/file_scan_reports_v3.py +0 -95
  172. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/fix.py +0 -113
  173. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/get_condensed_model_scan_reports200_response.py +0 -102
  174. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/graph.py +0 -123
  175. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/graph_traversal.py +0 -97
  176. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/inventory_v3.py +0 -101
  177. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/invocation.py +0 -199
  178. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/location.py +0 -146
  179. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/location_inner.py +0 -138
  180. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/location_relationship.py +0 -107
  181. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/logical_location.py +0 -104
  182. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/message.py +0 -92
  183. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/mitre_atlas_inner.py +0 -110
  184. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/model.py +0 -103
  185. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/model_inventory_info.py +0 -103
  186. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/model_version.py +0 -97
  187. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/multi_file_upload_request_v3.py +0 -97
  188. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/multiformat_message_string.py +0 -95
  189. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/node.py +0 -122
  190. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/notification.py +0 -157
  191. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/notify_model_scan_completed200_response.py +0 -87
  192. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/paged_response_with_total.py +0 -94
  193. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/pagination_v3.py +0 -95
  194. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/physical_location.py +0 -94
  195. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/problem_details.py +0 -103
  196. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/property_bag.py +0 -101
  197. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/rectangle.py +0 -110
  198. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/region.py +0 -127
  199. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/replacement.py +0 -103
  200. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/reporting_configuration.py +0 -113
  201. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/reporting_descriptor.py +0 -162
  202. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/reporting_descriptor_reference.py +0 -103
  203. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/reporting_descriptor_relationship.py +0 -115
  204. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/result.py +0 -312
  205. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/result_provenance.py +0 -133
  206. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/rule_details_inner.py +0 -102
  207. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/run.py +0 -318
  208. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/run_automation_details.py +0 -129
  209. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sarif210.py +0 -123
  210. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_create_request.py +0 -87
  211. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_detection_v3.py +0 -159
  212. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_detection_v31.py +0 -158
  213. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_header_v3.py +0 -129
  214. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_job.py +0 -115
  215. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_job_access.py +0 -97
  216. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_model_details_v3.py +0 -99
  217. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_model_details_v31.py +0 -97
  218. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_model_ids_v3.py +0 -89
  219. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_report_v3.py +0 -139
  220. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_results_map_v3.py +0 -105
  221. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/scan_results_v3.py +0 -120
  222. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/security_posture.py +0 -89
  223. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor.py +0 -100
  224. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor_query_response.py +0 -101
  225. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor_sor_model_card_query_response.py +0 -101
  226. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor_sor_model_card_response.py +0 -127
  227. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor_sor_query_filter.py +0 -108
  228. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/sensor_sor_query_request.py +0 -109
  229. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/special_locations.py +0 -97
  230. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/stack.py +0 -113
  231. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/stack_frame.py +0 -104
  232. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/submission_response.py +0 -95
  233. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/submission_v2.py +0 -109
  234. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/suppression.py +0 -133
  235. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/thread_flow.py +0 -144
  236. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/thread_flow_location.py +0 -166
  237. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/tool.py +0 -107
  238. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/tool_component.py +0 -251
  239. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/tool_component_reference.py +0 -108
  240. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/translation_metadata.py +0 -110
  241. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/validation_error_model.py +0 -99
  242. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/version_control_details.py +0 -108
  243. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/web_request.py +0 -112
  244. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/models/web_response.py +0 -112
  245. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/rest/rest.py +0 -257
  246. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/services/aidr_predictive.py +0 -130
  247. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/services/model_scan.py +0 -505
  248. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/utils.py +0 -92
  249. hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/version.py +0 -1
  250. hiddenlayer_sdk-2.0.10/hiddenlayer_sdk.egg-info/PKG-INFO +0 -368
  251. hiddenlayer_sdk-2.0.10/hiddenlayer_sdk.egg-info/SOURCES.txt +0 -131
  252. hiddenlayer_sdk-2.0.10/hiddenlayer_sdk.egg-info/dependency_links.txt +0 -1
  253. hiddenlayer_sdk-2.0.10/hiddenlayer_sdk.egg-info/requires.txt +0 -19
  254. hiddenlayer_sdk-2.0.10/hiddenlayer_sdk.egg-info/top_level.txt +0 -1
  255. hiddenlayer_sdk-2.0.10/pyproject.toml +0 -71
  256. hiddenlayer_sdk-2.0.10/setup.cfg +0 -4
  257. hiddenlayer_sdk-2.0.10/tests/test_hiddenlayer.py +0 -26
  258. hiddenlayer_sdk-2.0.10/tests/test_utils.py +0 -47
  259. /hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/__init__.py → /hiddenlayer_sdk-3.0.0/examples/demo.py +0 -0
  260. /hiddenlayer_sdk-2.0.10/hiddenlayer/sdk/services/__init__.py → /hiddenlayer_sdk-3.0.0/src/hiddenlayer/py.typed +0 -0
@@ -0,0 +1,15 @@
1
+ .prism.log
2
+ _dev
3
+
4
+ __pycache__
5
+ .mypy_cache
6
+
7
+ dist
8
+
9
+ .venv
10
+ .idea
11
+
12
+ .env
13
+ .envrc
14
+ codegen.log
15
+ Brewfile.lock.json
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "3.0.0"
3
+ }
@@ -0,0 +1,438 @@
1
+ # Changelog
2
+
3
+ ## 3.0.0 (2025-09-23)
4
+
5
+ Full Changelog: [v0.1.0-alpha.33...v3.0.0](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/compare/v0.1.0-alpha.33...v3.0.0)
6
+
7
+ ### Chores
8
+
9
+ * update SDK settings ([d72d6b1](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/d72d6b163b84905c9772a97c73acf93a0b14e850))
10
+
11
+ ## 0.1.0-alpha.33 (2025-09-23)
12
+
13
+ Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)
14
+
15
+ ### Features
16
+
17
+ * **api:** add function for getting the JWT to help with auth ([2241969](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/22419698ee0da7065e42903753d033b0a6bce54c))
18
+ * **api:** api update ([79c778d](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/79c778d140f52ded1fcca54847619a3e66679b28))
19
+ * **api:** api update ([2820209](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/28202095eaebe32167155c5faa4de21ca55c8cf0))
20
+ * **api:** api update ([e3f1144](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/e3f1144d0e00e094460d5f3c38cd696d8e2c16ab))
21
+ * **api:** api update ([0b76e66](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/0b76e66357ab10abb39f66a020117832dc506d16))
22
+ * **api:** api update ([545e9af](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/545e9af1c1cf3da2d8054d1721e3f2513b33f07c))
23
+ * **api:** api update ([4db1715](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/4db1715172e71f9b6a74794cea907359a7d96857))
24
+ * **api:** api update ([82c11fa](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/82c11fa6610e8f5dba2688767afb59fbfc61425d))
25
+ * **api:** api update ([beff32c](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/beff32cfc1c6007662c1e379c29aa8e83e87c840))
26
+ * **api:** api update ([f09759f](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/f09759f30636ee203b3fda40e35ce83f2aa0168d))
27
+ * **api:** api update ([021184c](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/021184c0ded6cb982542594a096e0998cbdb8fde))
28
+ * **api:** api update ([d84b79e](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/d84b79ee8775415404386844eaace22ac17ad83d))
29
+ * **api:** api update ([367ecb5](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/367ecb595cb729696c90e04a1740ff42573510c9))
30
+ * **api:** api update ([92606a2](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/92606a2d8f3e242e40119ebd3234ae06d05dcbea))
31
+ * **api:** manual updates ([4e7ae89](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/4e7ae891898ecf0894200543406c69002d89dc74))
32
+ * **api:** manual updates ([1fbbe1e](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/1fbbe1ed0bd99897a568f92ab1707140ff313753))
33
+ * **api:** manual updates ([09f3e8e](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/09f3e8eee58ac5967af4d53cf6c6dc7e505fdea9))
34
+ * **api:** manual updates ([1744bae](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/1744bae7b54cc3362eed103f3351016f1e490946))
35
+ * **api:** manual updates ([4d57655](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/4d5765535a776f5e109457de67fd1306a6a93eed))
36
+ * **api:** manual updates ([61c01c3](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/61c01c3eec14a94987775265a3b8ba990b6b2d26))
37
+ * **api:** manual updates ([504fb70](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/504fb708ee7aa8f5b1d5f63632756035cec6ed70))
38
+ * **api:** manual updates ([b8b0a6a](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/b8b0a6a090d3a448af989a5518834a0d39f6cb7b))
39
+ * **api:** manual updates ([e520ec7](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/e520ec71e6704a4f9776ec172f1f5a69b37de4b1))
40
+ * **api:** manual updates ([c831240](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/c831240cec0e47c320016af8dddf95cb38e8c59b))
41
+ * **api:** manual updates ([c578b41](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/c578b41dc6cb6829922068672672d344a90f784c))
42
+ * **api:** update python production repo ([439b1a8](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/439b1a838166994c6463738d0699f256453274f3))
43
+ * **api:** update security to override to Bearer ([0ee703c](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/0ee703c0bfde7ea23e99502c6a404664766a8d34))
44
+ * **api:** update via SDK Studio ([ed57dcd](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/ed57dcd64e8bb109d2eeb43860253019732aac5d))
45
+ * **api:** update via SDK Studio ([8863e61](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/8863e6140c0dbecc02951b0bebdd4d2410a780dc))
46
+
47
+
48
+ ### Bug Fixes
49
+
50
+ * **package:** support direct resource imports ([8c35192](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/8c35192644c4921ae7ef1dd3f8b8ced673f41fcf))
51
+ * **parsing:** correctly handle nested discriminated unions ([e52f99d](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/e52f99da532b2437aa5641a49aa17baa7c8f0e4a))
52
+ * **pydantic v1:** more robust ModelField.annotation check ([66ea37a](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/66ea37abf8cf30afb399dac27ab9b20ff9239e81))
53
+
54
+
55
+ ### Chores
56
+
57
+ * **api:** remove unneeded files ([#50](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/issues/50)) ([e0e6e2b](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/e0e6e2bf8f87b82e30eb177b241a9c7913d49cce))
58
+ * broadly detect json family of content-type headers ([3df70db](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/3df70db5dc08bab75a9615ee5e5fa3ca985069d7))
59
+ * **ci:** add timeout thresholds for CI jobs ([9313327](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/93133273c8c86aacce264b38b319d8b21d2f0ad1))
60
+ * **ci:** fix installation instructions ([4127677](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/4127677b77a590fdb0fe10fffae8eb429a8cdc0b))
61
+ * **ci:** only use depot for staging repos ([758db79](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/758db7957c47763c859fa74d4a8fe6aa867113a8))
62
+ * **ci:** upload sdks to package manager ([b3c7382](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/b3c7382dbdb9a5f278b0bcf0e3409cf11fffe47a))
63
+ * configure new SDK language ([28b963b](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/28b963bd6a2c83b02d10d62414743271e83c7422))
64
+ * **internal:** avoid errors for isinstance checks on proxies ([3fb2e73](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/3fb2e73fae3388d8d6122ecc046ef64756c05864))
65
+ * **internal:** base client updates ([2c8e872](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/2c8e872ce0f712546d835cbb17db2f00851c7cb8))
66
+ * **internal:** bump pinned h11 dep ([f67609b](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/f67609b05c128b0e7f52ef85d31125d430ac4616))
67
+ * **internal:** bump pyright version ([4db92ef](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/4db92ef2f9773987c2abb473242d6acf0b887167))
68
+ * **internal:** codegen related update ([a10bc88](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/a10bc88d1542f573b58c81e616c48cc6da6c8a0e))
69
+ * **internal:** codegen related update ([d38c7bb](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/d38c7bb197c1f229fdbd31eb1dd86e20b98df6e1))
70
+ * **internal:** codegen related update ([f62836c](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/f62836cdbfc5871425b0f743349cc53bfb7aed14))
71
+ * **internal:** fix list file params ([7edb408](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/7edb4080770c52cb2aa450aa716f0099f48bd608))
72
+ * **internal:** import reformatting ([797c931](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/797c931eeea9b13e10d157d15e9075d18b4ff188))
73
+ * **internal:** minor formatting changes ([8a6ee86](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/8a6ee867788bd228bc6d3bcbe2694179c9075d84))
74
+ * **internal:** refactor retries to not use recursion ([b4a79b6](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/b4a79b6b82c3537a8d42593ff6f24166fcca217a))
75
+ * **internal:** update models test ([9b4b63e](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/9b4b63e95aed827cea45c88abc4b4314ac46274b))
76
+ * **package:** mark python 3.13 as supported ([ece5123](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/ece51230519f8299569d9d77b15b3a264d1fd1e1))
77
+ * **readme:** fix version rendering on pypi ([d2cf18b](https://github.com/hiddenlayerai/hiddenlayer-sdk-python/commit/d2cf18b0fd49629033a17b515f2a3adaa6ccab57))
78
+
79
+ ## 0.1.0-alpha.32 (2025-09-19)
80
+
81
+ Full Changelog: [v0.1.0-alpha.31...v0.1.0-alpha.32](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.31...v0.1.0-alpha.32)
82
+
83
+ ### Features
84
+
85
+ * **api:** api update ([a91887d](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/a91887d7f2d6022be03a9840684c8f16733fbff4))
86
+
87
+
88
+ ### Chores
89
+
90
+ * do not install brew dependencies in ./scripts/bootstrap by default ([f84656f](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f84656fbf20f36b2c9b68c393cd615fcb84649aa))
91
+
92
+ ## 0.1.0-alpha.31 (2025-09-19)
93
+
94
+ Full Changelog: [v0.1.0-alpha.30...v0.1.0-alpha.31](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.30...v0.1.0-alpha.31)
95
+
96
+ ### Features
97
+
98
+ * **api:** api update ([d782a16](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d782a1623c60f12276d659b4ec2920cb019a464a))
99
+ * **api:** api update ([8a382c3](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8a382c3b03866edd63304969f2c5ecf89ed70749))
100
+
101
+ ## 0.1.0-alpha.30 (2025-09-18)
102
+
103
+ Full Changelog: [v0.1.0-alpha.29...v0.1.0-alpha.30](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.29...v0.1.0-alpha.30)
104
+
105
+ ## 0.1.0-alpha.29 (2025-09-18)
106
+
107
+ Full Changelog: [v0.1.0-alpha.28...v0.1.0-alpha.29](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.28...v0.1.0-alpha.29)
108
+
109
+ ### Features
110
+
111
+ * **api:** api update ([6472e4e](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/6472e4e38cdba10f8e6495bbd7c6da53c7165db0))
112
+
113
+
114
+ ### Chores
115
+
116
+ * **types:** change optional parameter type from NotGiven to Omit ([724a3f5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/724a3f51dfe3e25c73474f799fb0e07352eabbfe))
117
+
118
+ ## 0.1.0-alpha.28 (2025-09-17)
119
+
120
+ Full Changelog: [v0.1.0-alpha.27...v0.1.0-alpha.28](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.27...v0.1.0-alpha.28)
121
+
122
+ ### Chores
123
+
124
+ * **api:** remove unneeded files ([#50](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/issues/50)) ([e0e6e2b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/e0e6e2bf8f87b82e30eb177b241a9c7913d49cce))
125
+
126
+ ## 0.1.0-alpha.27 (2025-09-17)
127
+
128
+ Full Changelog: [v0.1.0-alpha.26...v0.1.0-alpha.27](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.26...v0.1.0-alpha.27)
129
+
130
+ ### Features
131
+
132
+ * **api:** add Interactions endpoint ([dde9346](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/dde9346d35bbad61dbc108f14b982750e7031a96))
133
+ * **api:** add models for Interactions ([90e3bf1](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/90e3bf1a5235578723be8518829623f2609fb226))
134
+ * **api:** additional Interactions models ([8853eb3](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8853eb317e31f642dfc3d8d98367131b5a743926))
135
+ * **api:** api update ([7e3f0ea](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/7e3f0ea87cc0ea5db73dc72051946cf5b00451c5))
136
+
137
+
138
+ ### Bug Fixes
139
+
140
+ * **api:** drop Interactions Project model ([a4f3c6d](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/a4f3c6dacd62455ec6917c7d5ac21ae3fc928867))
141
+ * **api:** ensure correct HiddenLayer branding ([db14bba](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/db14bba1281cda6b8bd294f433eb1f400f8a8b76))
142
+ * **api:** properly namespace Interactions models ([ae8cbf7](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/ae8cbf798bed8dd7f7ee513dfc63c8f7aab7969f))
143
+ * **api:** remove all Interactions models ([8c049b0](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8c049b0f5262d9b7ac805dd81ccd5bc0a13de37e))
144
+ * **api:** rename Interactions project model ([1a4a26c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/1a4a26c4eee075b7cb7d194c52c59367c38822f0))
145
+ * **api:** set `default_env_prefix` to `HIDDENLAYER` in `client_settings` ([84a46a5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/84a46a5dddc47e22c15b29b3bdd2a633066dfd43))
146
+ * **docs:** update docs url ([3314a6f](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/3314a6f7b7024c67dc866d9ed2c0a82feb74859c))
147
+
148
+
149
+ ### Chores
150
+
151
+ * **internal:** update pydantic dependency ([a5b0e2e](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/a5b0e2eb759d7b327f4f415da6268081f488ddb5))
152
+
153
+ ## 0.1.0-alpha.26 (2025-09-15)
154
+
155
+ Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)
156
+
157
+ ### Features
158
+
159
+ * **api:** add sarif route ([337a430](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/337a4304e42008593296ef8084ea6b6f4453f709))
160
+
161
+ ## 0.1.0-alpha.25 (2025-09-12)
162
+
163
+ Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)
164
+
165
+ ### Features
166
+
167
+ * **api:** update tokenUrl ([cdc49d2](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/cdc49d29f21227398522bf7b388dcc573d27aebd))
168
+
169
+
170
+ ### Chores
171
+
172
+ * **tests:** simplify `get_platform` test ([9f9d70c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/9f9d70cc86012175becee389a438572560fef8e6))
173
+
174
+ ## 0.1.0-alpha.24 (2025-09-11)
175
+
176
+ Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.23...v0.1.0-alpha.24)
177
+
178
+ ### Features
179
+
180
+ * improve future compat with pydantic v3 ([1aed84f](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/1aed84fc565e40734f229cf1ee2d86d7152f670a))
181
+
182
+
183
+ ### Chores
184
+
185
+ * **internal:** move mypy configurations to `pyproject.toml` file ([ba5e158](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/ba5e1586993c00ec16aeb3195d4aae3ab8859bf7))
186
+
187
+ ## 0.1.0-alpha.23 (2025-09-02)
188
+
189
+ Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)
190
+
191
+ ### Features
192
+
193
+ * **api:** api update ([0192f46](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/0192f465bdabc8204a0889040502017c227cd4f3))
194
+ * **types:** replace List[str] with SequenceNotStr in params ([a5e1c2a](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/a5e1c2ac52a81996654d05931917fd0aec4ca7b6))
195
+
196
+ ## 0.1.0-alpha.22 (2025-08-29)
197
+
198
+ Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
199
+
200
+ ### Features
201
+
202
+ * **api:** api update ([f523d38](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f523d38d325d7289203b06c3d1e5243f654b283f))
203
+
204
+
205
+ ### Chores
206
+
207
+ * **internal:** add Sequence related utils ([f0af51b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f0af51badaf337f14b0a64663f97f1d0a3b9976e))
208
+ * **internal:** update pyright exclude list ([6f11796](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/6f1179674007bbe5fd140204492223b4d35854f6))
209
+
210
+ ## 0.1.0-alpha.21 (2025-08-26)
211
+
212
+ Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
213
+
214
+ ### Bug Fixes
215
+
216
+ * avoid newer type syntax ([2450326](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/2450326713c4b1363ce61096389623aed9a3fc5f))
217
+
218
+
219
+ ### Chores
220
+
221
+ * **internal:** change ci workflow machines ([0184a6c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/0184a6cc5a54c83c36a498d7cbcc32789db3b3be))
222
+ * **internal:** codegen related update ([2924314](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/29243141ec253dc932eafc66533f5e9e741cca99))
223
+ * **internal:** update comment in script ([1552b01](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/1552b0178410fc7b06edfaae412c41b282b3dcb5))
224
+ * update @stainless-api/prism-cli to v5.15.0 ([49e15d5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/49e15d59663269cf65d53ed967dbca173707f1e8))
225
+ * update github action ([8aa456b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8aa456b76cc854b3419198adf8e544bab8bfaffe))
226
+
227
+ ## 0.1.0-alpha.20 (2025-08-07)
228
+
229
+ Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
230
+
231
+ ### Features
232
+
233
+ * **api:** remove create /api/v2/models ([d2d1103](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d2d110327ce164c9ace4747e0da49c162a12ffde))
234
+
235
+ ## 0.1.0-alpha.19 (2025-08-06)
236
+
237
+ Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
238
+
239
+ ### Chores
240
+
241
+ * **internal:** fix ruff target version ([509ce89](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/509ce8922316e9136e4991a049dd4b22daaa9e88))
242
+
243
+ ## 0.1.0-alpha.18 (2025-08-06)
244
+
245
+ Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
246
+
247
+ ## 0.1.0-alpha.17 (2025-08-06)
248
+
249
+ Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
250
+
251
+ ## 0.1.0-alpha.16 (2025-08-05)
252
+
253
+ Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
254
+
255
+ ## 0.1.0-alpha.15 (2025-08-04)
256
+
257
+ Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
258
+
259
+ ## 0.1.0-alpha.14 (2025-07-31)
260
+
261
+ Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
262
+
263
+ ## 0.1.0-alpha.13 (2025-07-31)
264
+
265
+ Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
266
+
267
+ ### Features
268
+
269
+ * **api:** api update ([ab856d6](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/ab856d679d1886feb580ae99b79790ab511a125c))
270
+ * **api:** manual updates ([f926e12](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f926e12f4ed77fa2777c354944e03f28c98fd989))
271
+ * **api:** remove model intel routes ([dff1d61](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/dff1d610507c2ecbac95b4c195d78d7494f68c3f))
272
+ * **client:** support file upload requests ([c00c3a0](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/c00c3a0f8bc1ab385d6f7e7895cf1033cc5d3dcc))
273
+
274
+
275
+ ### Chores
276
+
277
+ * remove custom code ([aa328cc](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/aa328ccd2f408272249035c3fdbc5728e5e1cd49))
278
+
279
+ ## 0.1.0-alpha.12 (2025-07-25)
280
+
281
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
282
+
283
+ ### Features
284
+
285
+ * **api:** manual updates ([03fdded](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/03fddedb61bda77435ade41ffdc7286295dac2f1))
286
+
287
+
288
+ ### Chores
289
+
290
+ * **project:** add settings file for vscode ([d6407aa](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d6407aae7256cb72bdb447f3e6fd20ee36d12119))
291
+
292
+ ## 0.1.0-alpha.11 (2025-07-23)
293
+
294
+ Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
295
+
296
+ ### Features
297
+
298
+ * **api:** manual updates ([83758c8](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/83758c8f08d6cf44413d8703da5c170e29751a6a))
299
+
300
+ ## 0.1.0-alpha.10 (2025-07-23)
301
+
302
+ Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
303
+
304
+ ### Bug Fixes
305
+
306
+ * **parsing:** parse extra field types ([c62653d](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/c62653dcbd61315c94430b5cc155051e4c0f6cbb))
307
+
308
+ ## 0.1.0-alpha.9 (2025-07-22)
309
+
310
+ Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
311
+
312
+ ### Features
313
+
314
+ * **api:** api update ([e86ec2d](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/e86ec2d17d3918f698fea2e7b809ad3ca9d47c0b))
315
+
316
+ ## 0.1.0-alpha.8 (2025-07-22)
317
+
318
+ Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
319
+
320
+ ### Features
321
+
322
+ * **api:** api update ([5e105bc](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/5e105bc648ffd9e084494d327ee7399ad5079f43))
323
+
324
+ ## 0.1.0-alpha.7 (2025-07-22)
325
+
326
+ Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
327
+
328
+ ### Features
329
+
330
+ * **api:** api update ([2433e73](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/2433e73b7c551f02db091efb9af210632f0032cd))
331
+
332
+
333
+ ### Bug Fixes
334
+
335
+ * **parsing:** ignore empty metadata ([f3b496b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f3b496b5f48e4bd6aa38ab260c76cface06bea8a))
336
+
337
+
338
+ ### Chores
339
+
340
+ * **types:** rebuild Pydantic models after all types are defined ([186ccda](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/186ccda280184623ff694cdbce1eae5c98e57aa9))
341
+
342
+ ## 0.1.0-alpha.6 (2025-07-18)
343
+
344
+ Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
345
+
346
+ ### Features
347
+
348
+ * **api:** added PUT /api/v2/models to config ([d2be4c9](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d2be4c99d166db198c902efe6e9430b7ded0d270))
349
+
350
+ ## 0.1.0-alpha.5 (2025-07-17)
351
+
352
+ Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
353
+
354
+ ### Features
355
+
356
+ * **api:** api update ([5aee97f](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/5aee97f2d8baa684f1b83c9db4df274fc2ce3548))
357
+
358
+ ## 0.1.0-alpha.4 (2025-07-17)
359
+
360
+ Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
361
+
362
+ ### Features
363
+
364
+ * **api:** added sensor update ([6a77a18](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/6a77a187141a0775d7a50c268205ce1be99e82fc))
365
+
366
+ ## 0.1.0-alpha.3 (2025-07-16)
367
+
368
+ Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
369
+
370
+ ## 0.1.0-alpha.2 (2025-07-16)
371
+
372
+ Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
373
+
374
+ ## 0.1.0-alpha.1 (2025-07-15)
375
+
376
+ Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
377
+
378
+ ### Features
379
+
380
+ * **api:** add function for getting the JWT to help with auth ([2241969](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/22419698ee0da7065e42903753d033b0a6bce54c))
381
+ * **api:** added offset-page pagination scheme ([6e98ef8](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/6e98ef832b83450ad4fed47c1e4a23fb9bfb0922))
382
+ * **api:** api update ([7a4683b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/7a4683b104d18b815a829cdb0e8d01ca56280262))
383
+ * **api:** api update ([0b76e66](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/0b76e66357ab10abb39f66a020117832dc506d16))
384
+ * **api:** api update ([545e9af](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/545e9af1c1cf3da2d8054d1721e3f2513b33f07c))
385
+ * **api:** api update ([4db1715](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/4db1715172e71f9b6a74794cea907359a7d96857))
386
+ * **api:** api update ([82c11fa](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/82c11fa6610e8f5dba2688767afb59fbfc61425d))
387
+ * **api:** api update ([beff32c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/beff32cfc1c6007662c1e379c29aa8e83e87c840))
388
+ * **api:** api update ([f09759f](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f09759f30636ee203b3fda40e35ce83f2aa0168d))
389
+ * **api:** api update ([021184c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/021184c0ded6cb982542594a096e0998cbdb8fde))
390
+ * **api:** api update ([d84b79e](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d84b79ee8775415404386844eaace22ac17ad83d))
391
+ * **api:** api update ([367ecb5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/367ecb595cb729696c90e04a1740ff42573510c9))
392
+ * **api:** api update ([92606a2](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/92606a2d8f3e242e40119ebd3234ae06d05dcbea))
393
+ * **api:** manual updates ([7e068b5](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/7e068b527b5ec5de48660db3dc7834b0dbd19944))
394
+ * **api:** manual updates ([09f3e8e](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/09f3e8eee58ac5967af4d53cf6c6dc7e505fdea9))
395
+ * **api:** manual updates ([1744bae](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/1744bae7b54cc3362eed103f3351016f1e490946))
396
+ * **api:** manual updates ([4d57655](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/4d5765535a776f5e109457de67fd1306a6a93eed))
397
+ * **api:** manual updates ([61c01c3](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/61c01c3eec14a94987775265a3b8ba990b6b2d26))
398
+ * **api:** manual updates ([504fb70](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/504fb708ee7aa8f5b1d5f63632756035cec6ed70))
399
+ * **api:** manual updates ([b8b0a6a](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/b8b0a6a090d3a448af989a5518834a0d39f6cb7b))
400
+ * **api:** manual updates ([e520ec7](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/e520ec71e6704a4f9776ec172f1f5a69b37de4b1))
401
+ * **api:** manual updates ([c831240](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/c831240cec0e47c320016af8dddf95cb38e8c59b))
402
+ * **api:** manual updates ([c578b41](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/c578b41dc6cb6829922068672672d344a90f784c))
403
+ * **api:** update security to override to Bearer ([0ee703c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/0ee703c0bfde7ea23e99502c6a404664766a8d34))
404
+ * **api:** update via SDK Studio ([ed57dcd](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/ed57dcd64e8bb109d2eeb43860253019732aac5d))
405
+ * **api:** update via SDK Studio ([8863e61](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8863e6140c0dbecc02951b0bebdd4d2410a780dc))
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * **client:** don't send Content-Type header on GET requests ([7e4a8b8](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/7e4a8b8200d9c0caeb2bd94ffc24167a62aa0ff5))
411
+ * **package:** support direct resource imports ([8c35192](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8c35192644c4921ae7ef1dd3f8b8ced673f41fcf))
412
+ * **parsing:** correctly handle nested discriminated unions ([e52f99d](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/e52f99da532b2437aa5641a49aa17baa7c8f0e4a))
413
+ * **pydantic v1:** more robust ModelField.annotation check ([66ea37a](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/66ea37abf8cf30afb399dac27ab9b20ff9239e81))
414
+
415
+
416
+ ### Chores
417
+
418
+ * broadly detect json family of content-type headers ([3df70db](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/3df70db5dc08bab75a9615ee5e5fa3ca985069d7))
419
+ * **ci:** add timeout thresholds for CI jobs ([9313327](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/93133273c8c86aacce264b38b319d8b21d2f0ad1))
420
+ * **ci:** fix installation instructions ([4127677](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/4127677b77a590fdb0fe10fffae8eb429a8cdc0b))
421
+ * **ci:** only use depot for staging repos ([758db79](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/758db7957c47763c859fa74d4a8fe6aa867113a8))
422
+ * **ci:** upload sdks to package manager ([b3c7382](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/b3c7382dbdb9a5f278b0bcf0e3409cf11fffe47a))
423
+ * configure new SDK language ([28b963b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/28b963bd6a2c83b02d10d62414743271e83c7422))
424
+ * **internal:** avoid errors for isinstance checks on proxies ([3fb2e73](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/3fb2e73fae3388d8d6122ecc046ef64756c05864))
425
+ * **internal:** base client updates ([2c8e872](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/2c8e872ce0f712546d835cbb17db2f00851c7cb8))
426
+ * **internal:** bump pinned h11 dep ([f67609b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f67609b05c128b0e7f52ef85d31125d430ac4616))
427
+ * **internal:** bump pyright version ([4db92ef](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/4db92ef2f9773987c2abb473242d6acf0b887167))
428
+ * **internal:** codegen related update ([a10bc88](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/a10bc88d1542f573b58c81e616c48cc6da6c8a0e))
429
+ * **internal:** codegen related update ([d38c7bb](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d38c7bb197c1f229fdbd31eb1dd86e20b98df6e1))
430
+ * **internal:** codegen related update ([f62836c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/f62836cdbfc5871425b0f743349cc53bfb7aed14))
431
+ * **internal:** fix list file params ([7edb408](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/7edb4080770c52cb2aa450aa716f0099f48bd608))
432
+ * **internal:** import reformatting ([797c931](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/797c931eeea9b13e10d157d15e9075d18b4ff188))
433
+ * **internal:** minor formatting changes ([8a6ee86](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/8a6ee867788bd228bc6d3bcbe2694179c9075d84))
434
+ * **internal:** refactor retries to not use recursion ([b4a79b6](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/b4a79b6b82c3537a8d42593ff6f24166fcca217a))
435
+ * **internal:** update models test ([9b4b63e](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/9b4b63e95aed827cea45c88abc4b4314ac46274b))
436
+ * **package:** mark python 3.13 as supported ([ece5123](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/ece51230519f8299569d9d77b15b3a264d1fd1e1))
437
+ * **readme:** fix version rendering on pypi ([d2cf18b](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/d2cf18b0fd49629033a17b515f2a3adaa6ccab57))
438
+ * update SDK settings ([345840c](https://github.com/hiddenlayer-engineering/hiddenlayer-sdk-python/commit/345840cfaec887645d112636bde1b1a88374a4b6))
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at.
63
+
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.