reait 1.2.3__tar.gz → 1.2.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reait
3
- Version: 1.2.3
3
+ Version: 1.2.5
4
4
  Summary: RevEng.AI Toolkit and Python API
5
5
  Home-page: https://github.com/RevEng-AI/reait
6
6
  Author: James Patrick-Evans
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "reait"
7
- version = "1.2.3"
7
+ version = "1.2.5"
8
8
  readme = "README.md"
9
9
  classifiers=[
10
10
  "Programming Language :: Python :: 3",
@@ -15,7 +15,7 @@ from pandas import DataFrame
15
15
  from requests import request, Response, HTTPError
16
16
  from sklearn.metrics.pairwise import cosine_similarity
17
17
 
18
- __version__ = "1.2.3"
18
+ __version__ = "1.2.5"
19
19
 
20
20
  re_conf = {
21
21
  "apikey": environ.get("REAI_API_KEY", ""),
@@ -249,6 +249,7 @@ def RE_analyse(
249
249
  skip_capabilities: bool = False,
250
250
  skip_sbom: bool = False,
251
251
  advanced_analysis: bool = False,
252
+ skip_cves: bool = False,
252
253
  ) -> Response:
253
254
  """
254
255
  Start analysis job for binary file
@@ -1201,6 +1202,12 @@ def RE_models() -> Response:
1201
1202
  res.raise_for_status()
1202
1203
  return res
1203
1204
 
1205
+ def RE_models_v2() -> Response:
1206
+ res: Response = reveng_req(requests.get, "v2/models")
1207
+
1208
+ res.raise_for_status()
1209
+ return res
1210
+
1204
1211
 
1205
1212
  # NOTE: newest API as per documentation still using /v1/ prefix
1206
1213
  def RE_functions_dump(function_ids: list[int]) -> Response:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reait
3
- Version: 1.2.3
3
+ Version: 1.2.5
4
4
  Summary: RevEng.AI Toolkit and Python API
5
5
  Home-page: https://github.com/RevEng-AI/reait
6
6
  Author: James Patrick-Evans
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes