revengai 1.92.1__py3-none-any.whl → 1.95.0__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.

Potentially problematic release.


This version of revengai might be problematic. Click here for more details.

@@ -54,7 +54,6 @@ class SearchApi:
54
54
  tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
55
55
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
56
56
  user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
57
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
58
57
  _request_timeout: Union[
59
58
  None,
60
59
  Annotated[StrictFloat, Field(gt=0)],
@@ -86,8 +85,6 @@ class SearchApi:
86
85
  :type model_name: str
87
86
  :param user_files_only: Whether to only search user's uploaded files
88
87
  :type user_files_only: bool
89
- :param authorization: API Key bearer token
90
- :type authorization: str
91
88
  :param _request_timeout: timeout setting for this request. If one
92
89
  number provided, it will be total request
93
90
  timeout. It can also be a pair (tuple) of
@@ -118,7 +115,6 @@ class SearchApi:
118
115
  tags=tags,
119
116
  model_name=model_name,
120
117
  user_files_only=user_files_only,
121
- authorization=authorization,
122
118
  _request_auth=_request_auth,
123
119
  _content_type=_content_type,
124
120
  _headers=_headers,
@@ -150,7 +146,6 @@ class SearchApi:
150
146
  tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
151
147
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
152
148
  user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
153
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
154
149
  _request_timeout: Union[
155
150
  None,
156
151
  Annotated[StrictFloat, Field(gt=0)],
@@ -182,8 +177,6 @@ class SearchApi:
182
177
  :type model_name: str
183
178
  :param user_files_only: Whether to only search user's uploaded files
184
179
  :type user_files_only: bool
185
- :param authorization: API Key bearer token
186
- :type authorization: str
187
180
  :param _request_timeout: timeout setting for this request. If one
188
181
  number provided, it will be total request
189
182
  timeout. It can also be a pair (tuple) of
@@ -214,7 +207,6 @@ class SearchApi:
214
207
  tags=tags,
215
208
  model_name=model_name,
216
209
  user_files_only=user_files_only,
217
- authorization=authorization,
218
210
  _request_auth=_request_auth,
219
211
  _content_type=_content_type,
220
212
  _headers=_headers,
@@ -246,7 +238,6 @@ class SearchApi:
246
238
  tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
247
239
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
248
240
  user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
249
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
250
241
  _request_timeout: Union[
251
242
  None,
252
243
  Annotated[StrictFloat, Field(gt=0)],
@@ -278,8 +269,6 @@ class SearchApi:
278
269
  :type model_name: str
279
270
  :param user_files_only: Whether to only search user's uploaded files
280
271
  :type user_files_only: bool
281
- :param authorization: API Key bearer token
282
- :type authorization: str
283
272
  :param _request_timeout: timeout setting for this request. If one
284
273
  number provided, it will be total request
285
274
  timeout. It can also be a pair (tuple) of
@@ -310,7 +299,6 @@ class SearchApi:
310
299
  tags=tags,
311
300
  model_name=model_name,
312
301
  user_files_only=user_files_only,
313
- authorization=authorization,
314
302
  _request_auth=_request_auth,
315
303
  _content_type=_content_type,
316
304
  _headers=_headers,
@@ -337,7 +325,6 @@ class SearchApi:
337
325
  tags,
338
326
  model_name,
339
327
  user_files_only,
340
- authorization,
341
328
  _request_auth,
342
329
  _content_type,
343
330
  _headers,
@@ -390,8 +377,6 @@ class SearchApi:
390
377
  _query_params.append(('user_files_only', user_files_only))
391
378
 
392
379
  # process the header parameters
393
- if authorization is not None:
394
- _header_params['authorization'] = authorization
395
380
  # process the form parameters
396
381
  # process the body parameter
397
382
 
@@ -441,7 +426,6 @@ class SearchApi:
441
426
  filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
442
427
  order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
443
428
  order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
444
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
445
429
  _request_timeout: Union[
446
430
  None,
447
431
  Annotated[StrictFloat, Field(gt=0)],
@@ -479,8 +463,6 @@ class SearchApi:
479
463
  :type order_by: AppApiRestV2CollectionsEnumsOrderBy
480
464
  :param order_by_direction: The order direction in which to return results
481
465
  :type order_by_direction: Order
482
- :param authorization: API Key bearer token
483
- :type authorization: str
484
466
  :param _request_timeout: timeout setting for this request. If one
485
467
  number provided, it will be total request
486
468
  timeout. It can also be a pair (tuple) of
@@ -514,7 +496,6 @@ class SearchApi:
514
496
  filters=filters,
515
497
  order_by=order_by,
516
498
  order_by_direction=order_by_direction,
517
- authorization=authorization,
518
499
  _request_auth=_request_auth,
519
500
  _content_type=_content_type,
520
501
  _headers=_headers,
@@ -550,7 +531,6 @@ class SearchApi:
550
531
  filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
551
532
  order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
552
533
  order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
553
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
554
534
  _request_timeout: Union[
555
535
  None,
556
536
  Annotated[StrictFloat, Field(gt=0)],
@@ -588,8 +568,6 @@ class SearchApi:
588
568
  :type order_by: AppApiRestV2CollectionsEnumsOrderBy
589
569
  :param order_by_direction: The order direction in which to return results
590
570
  :type order_by_direction: Order
591
- :param authorization: API Key bearer token
592
- :type authorization: str
593
571
  :param _request_timeout: timeout setting for this request. If one
594
572
  number provided, it will be total request
595
573
  timeout. It can also be a pair (tuple) of
@@ -623,7 +601,6 @@ class SearchApi:
623
601
  filters=filters,
624
602
  order_by=order_by,
625
603
  order_by_direction=order_by_direction,
626
- authorization=authorization,
627
604
  _request_auth=_request_auth,
628
605
  _content_type=_content_type,
629
606
  _headers=_headers,
@@ -659,7 +636,6 @@ class SearchApi:
659
636
  filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
660
637
  order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
661
638
  order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
662
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
663
639
  _request_timeout: Union[
664
640
  None,
665
641
  Annotated[StrictFloat, Field(gt=0)],
@@ -697,8 +673,6 @@ class SearchApi:
697
673
  :type order_by: AppApiRestV2CollectionsEnumsOrderBy
698
674
  :param order_by_direction: The order direction in which to return results
699
675
  :type order_by_direction: Order
700
- :param authorization: API Key bearer token
701
- :type authorization: str
702
676
  :param _request_timeout: timeout setting for this request. If one
703
677
  number provided, it will be total request
704
678
  timeout. It can also be a pair (tuple) of
@@ -732,7 +706,6 @@ class SearchApi:
732
706
  filters=filters,
733
707
  order_by=order_by,
734
708
  order_by_direction=order_by_direction,
735
- authorization=authorization,
736
709
  _request_auth=_request_auth,
737
710
  _content_type=_content_type,
738
711
  _headers=_headers,
@@ -763,7 +736,6 @@ class SearchApi:
763
736
  filters,
764
737
  order_by,
765
738
  order_by_direction,
766
- authorization,
767
739
  _request_auth,
768
740
  _content_type,
769
741
  _headers,
@@ -829,8 +801,6 @@ class SearchApi:
829
801
  _query_params.append(('order_by_direction', order_by_direction.value))
830
802
 
831
803
  # process the header parameters
832
- if authorization is not None:
833
- _header_params['authorization'] = authorization
834
804
  # process the form parameters
835
805
  # process the body parameter
836
806
 
@@ -874,7 +844,6 @@ class SearchApi:
874
844
  page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
875
845
  partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
876
846
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
877
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
878
847
  _request_timeout: Union[
879
848
  None,
880
849
  Annotated[StrictFloat, Field(gt=0)],
@@ -900,8 +869,6 @@ class SearchApi:
900
869
  :type partial_name: str
901
870
  :param model_name: The name of the model used to analyze the binary the function belongs to
902
871
  :type model_name: str
903
- :param authorization: API Key bearer token
904
- :type authorization: str
905
872
  :param _request_timeout: timeout setting for this request. If one
906
873
  number provided, it will be total request
907
874
  timeout. It can also be a pair (tuple) of
@@ -929,7 +896,6 @@ class SearchApi:
929
896
  page_size=page_size,
930
897
  partial_name=partial_name,
931
898
  model_name=model_name,
932
- authorization=authorization,
933
899
  _request_auth=_request_auth,
934
900
  _content_type=_content_type,
935
901
  _headers=_headers,
@@ -958,7 +924,6 @@ class SearchApi:
958
924
  page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
959
925
  partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
960
926
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
961
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
962
927
  _request_timeout: Union[
963
928
  None,
964
929
  Annotated[StrictFloat, Field(gt=0)],
@@ -984,8 +949,6 @@ class SearchApi:
984
949
  :type partial_name: str
985
950
  :param model_name: The name of the model used to analyze the binary the function belongs to
986
951
  :type model_name: str
987
- :param authorization: API Key bearer token
988
- :type authorization: str
989
952
  :param _request_timeout: timeout setting for this request. If one
990
953
  number provided, it will be total request
991
954
  timeout. It can also be a pair (tuple) of
@@ -1013,7 +976,6 @@ class SearchApi:
1013
976
  page_size=page_size,
1014
977
  partial_name=partial_name,
1015
978
  model_name=model_name,
1016
- authorization=authorization,
1017
979
  _request_auth=_request_auth,
1018
980
  _content_type=_content_type,
1019
981
  _headers=_headers,
@@ -1042,7 +1004,6 @@ class SearchApi:
1042
1004
  page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
1043
1005
  partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
1044
1006
  model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
1045
- authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
1046
1007
  _request_timeout: Union[
1047
1008
  None,
1048
1009
  Annotated[StrictFloat, Field(gt=0)],
@@ -1068,8 +1029,6 @@ class SearchApi:
1068
1029
  :type partial_name: str
1069
1030
  :param model_name: The name of the model used to analyze the binary the function belongs to
1070
1031
  :type model_name: str
1071
- :param authorization: API Key bearer token
1072
- :type authorization: str
1073
1032
  :param _request_timeout: timeout setting for this request. If one
1074
1033
  number provided, it will be total request
1075
1034
  timeout. It can also be a pair (tuple) of
@@ -1097,7 +1056,6 @@ class SearchApi:
1097
1056
  page_size=page_size,
1098
1057
  partial_name=partial_name,
1099
1058
  model_name=model_name,
1100
- authorization=authorization,
1101
1059
  _request_auth=_request_auth,
1102
1060
  _content_type=_content_type,
1103
1061
  _headers=_headers,
@@ -1121,7 +1079,6 @@ class SearchApi:
1121
1079
  page_size,
1122
1080
  partial_name,
1123
1081
  model_name,
1124
- authorization,
1125
1082
  _request_auth,
1126
1083
  _content_type,
1127
1084
  _headers,
@@ -1161,8 +1118,6 @@ class SearchApi:
1161
1118
  _query_params.append(('model_name', model_name))
1162
1119
 
1163
1120
  # process the header parameters
1164
- if authorization is not None:
1165
- _header_params['authorization'] = authorization
1166
1121
  # process the form parameters
1167
1122
  # process the body parameter
1168
1123
 
revengai/api_client.py CHANGED
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'OpenAPI-Generator/v1.92.1/python'
93
+ self.user_agent = 'OpenAPI-Generator/v1.95.0/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  def __enter__(self):
revengai/configuration.py CHANGED
@@ -529,8 +529,8 @@ conf = revengai.Configuration(
529
529
  return "Python SDK Debug Report:\n"\
530
530
  "OS: {env}\n"\
531
531
  "Python Version: {pyversion}\n"\
532
- "Version of the API: v1.92.1\n"\
533
- "SDK Package Version: v1.92.1".\
532
+ "Version of the API: v1.95.0\n"\
533
+ "SDK Package Version: v1.95.0".\
534
534
  format(env=sys.platform, pyversion=sys.version)
535
535
 
536
536
  def get_host_settings(self) -> List[HostSetting]:
@@ -25,10 +25,10 @@ class FunctionBoundary(BaseModel):
25
25
  """
26
26
  FunctionBoundary
27
27
  """ # noqa: E501
28
- name: StrictStr
28
+ mangled_name: StrictStr
29
29
  start_address: StrictInt
30
30
  end_address: StrictInt
31
- __properties: ClassVar[List[str]] = ["name", "start_address", "end_address"]
31
+ __properties: ClassVar[List[str]] = ["mangled_name", "start_address", "end_address"]
32
32
 
33
33
  model_config = ConfigDict(
34
34
  populate_by_name=True,
@@ -81,7 +81,7 @@ class FunctionBoundary(BaseModel):
81
81
  return cls.model_validate(obj)
82
82
 
83
83
  _obj = cls.model_validate({
84
- "name": obj.get("name"),
84
+ "mangled_name": obj.get("mangled_name"),
85
85
  "start_address": obj.get("start_address"),
86
86
  "end_address": obj.get("end_address")
87
87
  })
@@ -27,7 +27,7 @@ class FunctionMapping(BaseModel):
27
27
  """ # noqa: E501
28
28
  function_map: Dict[str, StrictInt] = Field(description="Mapping of remote function ids to local function addresses")
29
29
  inverse_function_map: Dict[str, StrictInt] = Field(description="Mapping of local function addresses to remote function ids")
30
- name_map: Dict[str, StrictStr] = Field(description="Mapping of local function addresses to function names")
30
+ name_map: Dict[str, StrictStr] = Field(description="Mapping of local function addresses to mangled names")
31
31
  __properties: ClassVar[List[str]] = ["function_map", "inverse_function_map", "name_map"]
32
32
 
33
33
  model_config = ConfigDict(
@@ -1,8 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: revengai
3
- Version: 1.92.1
3
+ Version: 1.95.0
4
4
  Summary: RevEng.AI API
5
- Project-URL: Repository, https://github.com/RevEngAI/revengai-python
5
+ Project-URL: Repository, https://github.com/RevEngAI/sdk-python
6
+ License-Expression: MIT
7
+ License-File: LICENSE.md
6
8
  Keywords: RevEng.AI API
7
9
  Requires-Python: >=3.13
8
10
  Requires-Dist: lazy-imports<2,>=1
@@ -12,7 +14,7 @@ Requires-Dist: typing-extensions>=4.7.1
12
14
  Requires-Dist: urllib3<3.0.0,>=2.1.0
13
15
  Description-Content-Type: text/markdown
14
16
 
15
- # revengai
17
+ # RevEng.AI Python SDK
16
18
 
17
19
  This is the Python SDK for the RevEng.AI API.
18
20
 
@@ -1,30 +1,30 @@
1
- revengai/__init__.py,sha256=uVzo-0F2kGl5iAZ_GcAiRoR1NFVJpxyNxf8xvua6NGw,43030
2
- revengai/api_client.py,sha256=s1kR5EmKz8uUxhRqmrAfcwFVldGYWTK7PjcZKU-7F_w,27670
1
+ revengai/__init__.py,sha256=JUkYRrDOqyxdy4yva_9OEqvffix6OatKeydBkinp7SQ,43030
2
+ revengai/api_client.py,sha256=IJN8Oggcu378kCDF9LFwuLsaldcP8joNsVzySDH59f0,27670
3
3
  revengai/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- revengai/configuration.py,sha256=8w1fmJlVUej7sSKInOtT-4Xy869nCHSH-f32uOfoJqY,18749
4
+ revengai/configuration.py,sha256=JIbDFUuY7g8FvIcTCgj_3ArgAENwnT1pjI9br2H2A1s,18749
5
5
  revengai/exceptions.py,sha256=IvdI9ZIZ9b2lSSKtIKMQDlG-5UPAedrjm3U4xfmGkso,6385
6
6
  revengai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  revengai/rest.py,sha256=T6Q2dcazhntqm288H33BKC1hf8NVdvmQWgaymlJo158,9376
8
8
  revengai/api/__init__.py,sha256=ercHI6-ZXgrfZ-crplF-fSQbSXY4xPellnIkvTt68uc,1320
9
- revengai/api/analyses_comments_api.py,sha256=L6NuM8bS3NJRt1b3WKdnZlYVE0YgdcZivNwGuQe5Gb4,49575
10
- revengai/api/analyses_core_api.py,sha256=NepmPQlWZ2YnBpAPHoK0rXjvsgw6lWjghaJWd8v-Sk0,197484
11
- revengai/api/analyses_dynamic_execution_api.py,sha256=4vNnupRsuwNVNk7cPa-VFx2nnLtrokJpHu4YUOPwX_o,77682
12
- revengai/api/analyses_results_metadata_api.py,sha256=ibAQYhNtvjjV2fqTUxV3FpiG5PpeILEkhBPfWW9zQYM,79270
13
- revengai/api/analyses_security_checks_api.py,sha256=b1phfsLDO2kvmLaYtGjMVUkHUhRp63EEN3aJvTyX16o,35691
14
- revengai/api/authentication_users_api.py,sha256=2bJh7ij2nMIlsz-YIQHjl9Q2RSHlYKgBrCW3E8GNhdw,53758
15
- revengai/api/binaries_api.py,sha256=QMKuMSwu5b0H-HElCeECff_Wd0OuSo0ZN4oyKtvUFsw,66116
16
- revengai/api/collections_api.py,sha256=B6QLZ8pzDssu60R9cRF66b6vEn2HFv9z_zHIVSFle_E,89699
17
- revengai/api/confidence_api.py,sha256=1tLfE_uMhK7kHQP3ErkHScJZo1x0pG2-FK_nK_DiFHk,50722
18
- revengai/api/external_sources_api.py,sha256=JMyVAoivo6AsgeNekXnSk5BZh02APn9bzojoFzdsCdU,65993
19
- revengai/api/firmware_api.py,sha256=IPkGAJ-gxmuNcz2sUM6ip-9N2DZujqLJWwhiLvUQBOA,24150
20
- revengai/api/functions_ai_decompilation_api.py,sha256=ecFO-ENq9W7EoikKueY3McecKAw2fz44ZchYw6QJ29c,109824
21
- revengai/api/functions_block_comments_api.py,sha256=SilDkZYrrJ2_6j-Hh-ZNTUZKp1G9XE9aUwVbDzev5Co,35480
22
- revengai/api/functions_core_api.py,sha256=aK3szgh3LRltaMoUt2_8fiPWUFS9GBPKotcPYoRvkbs,162988
23
- revengai/api/functions_data_types_api.py,sha256=Fzu4oI6kTwSE820_cGjr09N_G3uGOa4DUiyPFwOqvx4,73869
24
- revengai/api/functions_decompilation_api.py,sha256=nEvYHPFoonmKSAf_t4_voC3SfoDd-O9sisSfA-5hiJo,83262
25
- revengai/api/functions_renaming_history_api.py,sha256=L2CDadLnZrA0oNxhJfTSLLiMDz0Z4583Q8zLEj-Ze2I,47441
26
- revengai/api/models_api.py,sha256=bqukeUMctErkaX5mH8Rm3iPKEHQOCx-JT-P8_KV_iP8,11319
27
- revengai/api/search_api.py,sha256=Kzo7KfP4nY1-YsoCHxVOQm3Vn89kFjcnUV7oNdaw5z0,65835
9
+ revengai/api/analyses_comments_api.py,sha256=p_3N8KmHSBsBtsiW0rAc_LtsM-X3NOJEP86-9VUknoc,46292
10
+ revengai/api/analyses_core_api.py,sha256=7EJcKPx9LE1w5yzJFQXTmWKMhEIs4TG_hfZxoP9_K4M,184508
11
+ revengai/api/analyses_dynamic_execution_api.py,sha256=N1SlAlsokt8us_x11tJpjK5GSAk-kuEECNO9KqtO0dI,71948
12
+ revengai/api/analyses_results_metadata_api.py,sha256=jRUub32skTygbVgo4K81XLLsJlL__1I99EO55ctuVEw,73593
13
+ revengai/api/analyses_security_checks_api.py,sha256=YqdVI96mNOb7yyCX2gm3sDABbNr7BMO6jUtvmwKPctk,33219
14
+ revengai/api/authentication_users_api.py,sha256=V2J0OB6nqHvAXfxsPa3rTzTrHVLt2N9VNqyjOZpYwis,50428
15
+ revengai/api/binaries_api.py,sha256=dnMTtqXH1huJKE7u2oTdnr9bleU0Gl-XwNwu4gwd1Y0,61182
16
+ revengai/api/collections_api.py,sha256=M5HSv8acfZAd0ool2yaLCPDIvOPVdPb99S91X82A9Ag,84022
17
+ revengai/api/confidence_api.py,sha256=geJC30w7qKsdD_SwkJ20zfB2bBW9ybHjkB3VhSsj1Bg,47439
18
+ revengai/api/external_sources_api.py,sha256=A5VaijGn6ZwdoymwyhrQlLB0g83CwIg_fEwcDRTCUFw,61041
19
+ revengai/api/firmware_api.py,sha256=FqBqNseoyuwsvc4tAh7Uz2vIO0OSgBg2O8PkyfxLG1A,22481
20
+ revengai/api/functions_ai_decompilation_api.py,sha256=2ALgQsi0m8LUteUCQQa5zE3vmFb_GarRu72H1IK2x84,102514
21
+ revengai/api/functions_block_comments_api.py,sha256=EWIvKLiiD68OSpHKZvYcGx5Dcb1HOxw1sdzfUMPrAkE,32961
22
+ revengai/api/functions_core_api.py,sha256=R2Ary0b03_0adkpVMkihPTldgZTfxZFaxb4GxvsDVs4,152445
23
+ revengai/api/functions_data_types_api.py,sha256=2juytFuLbsQ_C_f_A3vGCeHHEET1fIoFRcOcCKDWk0E,68945
24
+ revengai/api/functions_decompilation_api.py,sha256=93tId0XHIUo8zPdCwoFShyvZPbptnxcTkHi9TzGX_60,77546
25
+ revengai/api/functions_renaming_history_api.py,sha256=2VuhjQliFO0rDcwmnl4s5BA36xgEtps2_qZdsqQI6hw,44111
26
+ revengai/api/models_api.py,sha256=jZ1wY48GT0JsxY-DgcwkxF5uyQTqygUYOuF8De0BQnw,10402
27
+ revengai/api/search_api.py,sha256=WQslQMX-fExlxONkJVy4MMfQ0VnDxqzJumYc9dbcRp0,63402
28
28
  revengai/models/__init__.py,sha256=VbAbhW_IfAT9hJ5G1j3wcVNqZutdLPts9QHsZg7ndvY,23237
29
29
  revengai/models/addr.py,sha256=-2N-UQsOiZ0eyEAQ7ssk0of8W2fBrXeYdTZXuVt3SZs,4787
30
30
  revengai/models/ai_decompilation_rating.py,sha256=gyay27QJwToUNtK9NARyw731Sg8GFRTufGGUABVYyfo,722
@@ -201,7 +201,7 @@ revengai/models/function_batch_ann.py,sha256=85ems0hvPJVsMH89BuT7TPmqxIAVBci5ZPN
201
201
  revengai/models/function_block_destination_response.py,sha256=ffcxW67TIbLkO8P8D9_quP7J9T_PIgCZZXNSRIEii0I,3130
202
202
  revengai/models/function_block_response.py,sha256=KxnssvtH_MUvgQH358TfVZofVKyRHQYftMX36N2zdBY,3960
203
203
  revengai/models/function_blocks_response.py,sha256=8Eu3jA9GKCXVNX7viu3OQxJNsqUZMxBlg498eJ9HFA4,4847
204
- revengai/models/function_boundary.py,sha256=2PqsXWD8QlMZZJVeNeWH_XDZQgB_a5CgHP1w0GytbHw,2599
204
+ revengai/models/function_boundary.py,sha256=tHb-CcAQiJXRZVbR5ihGN_hGiaqbz9HNmF1k8XOTwKo,2631
205
205
  revengai/models/function_box_plot_confidence.py,sha256=UfHe1ZVqmHmg2BiyJ8MaBbVFpHZI8Yap_IIhgBwfzMk,2852
206
206
  revengai/models/function_capability_response.py,sha256=OQ9v6itmKCseGMeKwExdEsLZHjQXorViBiutuEP-_YY,2535
207
207
  revengai/models/function_comment_create_request.py,sha256=jj-AJ4xDYrcnHudEz7-jgm_6o4iLjlej8VLGq8Hx9yY,3032
@@ -215,7 +215,7 @@ revengai/models/function_info_input.py,sha256=w2WZ4xjp0nZ_gea4NrcMl5huksF-8QZB74
215
215
  revengai/models/function_info_input_func_deps_inner.py,sha256=oNrQvHiraXX74EjnQ5M-xYwNIrRngk9sePKq3ANct5w,6292
216
216
  revengai/models/function_info_output.py,sha256=iIxkZ6_KFSoz0NhbBXyNi7knPvWcIp-hmA2H51VoH6Y,3707
217
217
  revengai/models/function_local_variable_response.py,sha256=llv5alvfVXqxE3Cs6vt7qnQNyfwj4PBoxq_Sim65jic,2733
218
- revengai/models/function_mapping.py,sha256=X4fa-lcMfO-40eVMtSTUPRpJlxdSZNEdzPTEOR0uAlg,2924
218
+ revengai/models/function_mapping.py,sha256=EBO_jGfEjK7ihIdx-bWSHAT9EozB_S9JDeCLL0dAQJM,2923
219
219
  revengai/models/function_mapping_full.py,sha256=dax345vnk25zSPVVpAmCFrrOWXzFXW6OnhSs9zVIKpI,11948
220
220
  revengai/models/function_matching_batch_response.py,sha256=oBglZULIjMvbrlzjymWNKSNERVzftWH7hHBRC3uMoP0,4952
221
221
  revengai/models/function_matching_filters.py,sha256=O5F1PIcPhbumH8z-4KbG7JNoUsx_H3wBZQU9kCZ_boI,3710
@@ -333,6 +333,7 @@ revengai/models/vulnerabilities.py,sha256=9t6uoZd3svWyfcZJjmj6zP731Dp47Apb25y8Qt
333
333
  revengai/models/vulnerability.py,sha256=P7rAOAYU5JLLpcRr824-YJgZba5kPb_J9ALV3tSNfLQ,3688
334
334
  revengai/models/vulnerability_type.py,sha256=SyOgfMmELYYc_H84oPkikBpjwngtG5Qw9Q_86a2TPr8,866
335
335
  revengai/models/workspace.py,sha256=chjU62GFvByEmaNd6luMNQVQLP3wlPx1zJgGJ_yyMLA,676
336
- revengai-1.92.1.dist-info/METADATA,sha256=Azp-aDvRQMHAyQeR4p_BxMuCxaW4n0YOb5p72gafUnc,41318
337
- revengai-1.92.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
338
- revengai-1.92.1.dist-info/RECORD,,
336
+ revengai-1.95.0.dist-info/METADATA,sha256=9YJ92urst5DiJZ6Z8ffaGlSsAmNJYnzhEKN15UuGObg,41374
337
+ revengai-1.95.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
338
+ revengai-1.95.0.dist-info/licenses/LICENSE.md,sha256=z1S-x9w52sZDqbFdJi0kL5-FLP5CR2aQA0kW8m6scaw,1052
339
+ revengai-1.95.0.dist-info/RECORD,,
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2025 RevEng.AI
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
19
+ OR OTHER DEALINGS IN THE SOFTWARE.