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

Files changed (37) hide show
  1. revengai/__init__.py +1 -37
  2. revengai/api/__init__.py +0 -1
  3. revengai/api/analyses_core_api.py +0 -294
  4. revengai/api/functions_ai_decompilation_api.py +30 -30
  5. revengai/api/functions_core_api.py +2 -369
  6. revengai/api_client.py +1 -1
  7. revengai/configuration.py +2 -2
  8. revengai/models/__init__.py +0 -17
  9. revengai/models/callee_function_info.py +1 -1
  10. revengai/models/caller_function_info.py +1 -1
  11. revengai/models/decompilation_response.py +2 -2
  12. revengai/models/elf_relocation.py +1 -1
  13. revengai/models/function_matching_result_with_best_match.py +2 -2
  14. revengai/models/functions_detail_response.py +5 -3
  15. revengai/models/matched_function.py +2 -2
  16. {revengai-2.3.0.dist-info → revengai-2.9.1.dist-info}/METADATA +1 -24
  17. {revengai-2.3.0.dist-info → revengai-2.9.1.dist-info}/RECORD +19 -37
  18. revengai/api/confidence_api.py +0 -1152
  19. revengai/models/ann_function.py +0 -122
  20. revengai/models/base_response_box_plot_confidence.py +0 -125
  21. revengai/models/base_response_list_function_box_plot_confidence.py +0 -129
  22. revengai/models/base_response_list_similar_functions_response.py +0 -129
  23. revengai/models/base_response_list_tag_origin_box_plot_confidence.py +0 -129
  24. revengai/models/base_response_nearest_neighbor_analysis.py +0 -135
  25. revengai/models/box_plot_confidence.py +0 -98
  26. revengai/models/function_box_plot_confidence.py +0 -92
  27. revengai/models/function_name_confidence_body.py +0 -97
  28. revengai/models/function_name_input.py +0 -88
  29. revengai/models/nearest_neighbor.py +0 -105
  30. revengai/models/origin.py +0 -42
  31. revengai/models/similar_functions_response.py +0 -100
  32. revengai/models/tag_confidence_body.py +0 -95
  33. revengai/models/tag_origin_box_plot_confidence.py +0 -96
  34. revengai/models/tags.py +0 -89
  35. revengai/models/threat_score_function_body.py +0 -87
  36. {revengai-2.3.0.dist-info → revengai-2.9.1.dist-info}/WHEEL +0 -0
  37. {revengai-2.3.0.dist-info → revengai-2.9.1.dist-info}/licenses/LICENSE.md +0 -0
@@ -12,7 +12,6 @@
12
12
  """ # noqa: E501
13
13
 
14
14
  # import models into model package
15
- from revengai.models.ann_function import ANNFunction
16
15
  from revengai.models.addr import Addr
17
16
  from revengai.models.ai_decompilation_rating import AiDecompilationRating
18
17
  from revengai.models.ai_unstrip_request import AiUnstripRequest
@@ -59,7 +58,6 @@ from revengai.models.base_response_binary_search_response import BaseResponseBin
59
58
  from revengai.models.base_response_block_comments_generation_for_function_response import BaseResponseBlockCommentsGenerationForFunctionResponse
60
59
  from revengai.models.base_response_block_comments_overview_generation_response import BaseResponseBlockCommentsOverviewGenerationResponse
61
60
  from revengai.models.base_response_bool import BaseResponseBool
62
- from revengai.models.base_response_box_plot_confidence import BaseResponseBoxPlotConfidence
63
61
  from revengai.models.base_response_callees_caller_functions_response import BaseResponseCalleesCallerFunctionsResponse
64
62
  from revengai.models.base_response_capabilities import BaseResponseCapabilities
65
63
  from revengai.models.base_response_check_security_checks_task_response import BaseResponseCheckSecurityChecksTaskResponse
@@ -92,16 +90,12 @@ from revengai.models.base_response_get_user_response import BaseResponseGetUserR
92
90
  from revengai.models.base_response_list_collection_results import BaseResponseListCollectionResults
93
91
  from revengai.models.base_response_list_comment_response import BaseResponseListCommentResponse
94
92
  from revengai.models.base_response_list_die_match import BaseResponseListDieMatch
95
- from revengai.models.base_response_list_function_box_plot_confidence import BaseResponseListFunctionBoxPlotConfidence
96
93
  from revengai.models.base_response_list_function_name_history import BaseResponseListFunctionNameHistory
97
94
  from revengai.models.base_response_list_sbom import BaseResponseListSBOM
98
- from revengai.models.base_response_list_similar_functions_response import BaseResponseListSimilarFunctionsResponse
99
- from revengai.models.base_response_list_tag_origin_box_plot_confidence import BaseResponseListTagOriginBoxPlotConfidence
100
95
  from revengai.models.base_response_list_user_activity_response import BaseResponseListUserActivityResponse
101
96
  from revengai.models.base_response_login_response import BaseResponseLoginResponse
102
97
  from revengai.models.base_response_logs import BaseResponseLogs
103
98
  from revengai.models.base_response_models_response import BaseResponseModelsResponse
104
- from revengai.models.base_response_nearest_neighbor_analysis import BaseResponseNearestNeighborAnalysis
105
99
  from revengai.models.base_response_network_overview_response import BaseResponseNetworkOverviewResponse
106
100
  from revengai.models.base_response_params import BaseResponseParams
107
101
  from revengai.models.base_response_process_dumps import BaseResponseProcessDumps
@@ -130,7 +124,6 @@ from revengai.models.binary_search_result import BinarySearchResult
130
124
  from revengai.models.binary_task_status import BinaryTaskStatus
131
125
  from revengai.models.block import Block
132
126
  from revengai.models.block_comments_generation_for_function_response import BlockCommentsGenerationForFunctionResponse
133
- from revengai.models.box_plot_confidence import BoxPlotConfidence
134
127
  from revengai.models.callee_function_info import CalleeFunctionInfo
135
128
  from revengai.models.callees_caller_functions_response import CalleesCallerFunctionsResponse
136
129
  from revengai.models.caller_function_info import CallerFunctionInfo
@@ -186,7 +179,6 @@ from revengai.models.function_block_destination_response import FunctionBlockDes
186
179
  from revengai.models.function_block_response import FunctionBlockResponse
187
180
  from revengai.models.function_blocks_response import FunctionBlocksResponse
188
181
  from revengai.models.function_boundary import FunctionBoundary
189
- from revengai.models.function_box_plot_confidence import FunctionBoxPlotConfidence
190
182
  from revengai.models.function_capability_response import FunctionCapabilityResponse
191
183
  from revengai.models.function_comment_create_request import FunctionCommentCreateRequest
192
184
  from revengai.models.function_data_types import FunctionDataTypes
@@ -205,9 +197,7 @@ from revengai.models.function_matching_batch_response import FunctionMatchingBat
205
197
  from revengai.models.function_matching_filters import FunctionMatchingFilters
206
198
  from revengai.models.function_matching_request import FunctionMatchingRequest
207
199
  from revengai.models.function_matching_result_with_best_match import FunctionMatchingResultWithBestMatch
208
- from revengai.models.function_name_confidence_body import FunctionNameConfidenceBody
209
200
  from revengai.models.function_name_history import FunctionNameHistory
210
- from revengai.models.function_name_input import FunctionNameInput
211
201
  from revengai.models.function_param_response import FunctionParamResponse
212
202
  from revengai.models.function_rename import FunctionRename
213
203
  from revengai.models.function_rename_map import FunctionRenameMap
@@ -244,13 +234,11 @@ from revengai.models.meta_model import MetaModel
244
234
  from revengai.models.model_name import ModelName
245
235
  from revengai.models.models_response import ModelsResponse
246
236
  from revengai.models.name_confidence import NameConfidence
247
- from revengai.models.nearest_neighbor import NearestNeighbor
248
237
  from revengai.models.network_overview_dns import NetworkOverviewDns
249
238
  from revengai.models.network_overview_dns_answer import NetworkOverviewDnsAnswer
250
239
  from revengai.models.network_overview_metadata import NetworkOverviewMetadata
251
240
  from revengai.models.network_overview_response import NetworkOverviewResponse
252
241
  from revengai.models.order import Order
253
- from revengai.models.origin import Origin
254
242
  from revengai.models.pdb_debug_model import PDBDebugModel
255
243
  from revengai.models.pe_model import PEModel
256
244
  from revengai.models.pagination_model import PaginationModel
@@ -277,7 +265,6 @@ from revengai.models.security_checks_response import SecurityChecksResponse
277
265
  from revengai.models.security_checks_result import SecurityChecksResult
278
266
  from revengai.models.security_model import SecurityModel
279
267
  from revengai.models.severity_type import SeverityType
280
- from revengai.models.similar_functions_response import SimilarFunctionsResponse
281
268
  from revengai.models.single_code_certificate_model import SingleCodeCertificateModel
282
269
  from revengai.models.single_code_signature_model import SingleCodeSignatureModel
283
270
  from revengai.models.single_pdb_entry_model import SinglePDBEntryModel
@@ -295,15 +282,11 @@ from revengai.models.ttps_data import TTPSData
295
282
  from revengai.models.ttps_element import TTPSElement
296
283
  from revengai.models.ttps_occurance import TTPSOccurance
297
284
  from revengai.models.tag import Tag
298
- from revengai.models.tag_confidence_body import TagConfidenceBody
299
- from revengai.models.tag_origin_box_plot_confidence import TagOriginBoxPlotConfidence
300
285
  from revengai.models.tag_response import TagResponse
301
286
  from revengai.models.tag_search_response import TagSearchResponse
302
287
  from revengai.models.tag_search_result import TagSearchResult
303
- from revengai.models.tags import Tags
304
288
  from revengai.models.task_response import TaskResponse
305
289
  from revengai.models.task_status import TaskStatus
306
- from revengai.models.threat_score_function_body import ThreatScoreFunctionBody
307
290
  from revengai.models.timestamp_model import TimestampModel
308
291
  from revengai.models.type_definition import TypeDefinition
309
292
  from revengai.models.update_function_data_types import UpdateFunctionDataTypes
@@ -25,7 +25,7 @@ class CalleeFunctionInfo(BaseModel):
25
25
  """
26
26
  CalleeFunctionInfo
27
27
  """ # noqa: E501
28
- function_id: StrictInt
28
+ function_id: StrictInt = Field(description="Unique identifier of the function")
29
29
  matched_function_id: Optional[StrictInt]
30
30
  dashboard_url: Optional[StrictStr]
31
31
  is_external: Optional[StrictBool] = Field(default=False, description="Indicates if the function is external")
@@ -25,7 +25,7 @@ class CallerFunctionInfo(BaseModel):
25
25
  """
26
26
  CallerFunctionInfo
27
27
  """ # noqa: E501
28
- function_id: StrictInt
28
+ function_id: StrictInt = Field(description="Unique identifier of the function")
29
29
  matched_function_id: Optional[StrictInt]
30
30
  dashboard_url: Optional[StrictStr]
31
31
  is_external: Optional[StrictBool] = Field(default=False, description="Indicates if the function is external")
@@ -16,7 +16,7 @@ import pprint
16
16
  import re # noqa: F401
17
17
  import json
18
18
 
19
- from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
20
20
  from typing import Any, ClassVar, Dict, List
21
21
  from typing import Optional, Set
22
22
  from typing_extensions import Self
@@ -25,7 +25,7 @@ class DecompilationResponse(BaseModel):
25
25
  """
26
26
  DecompilationResponse
27
27
  """ # noqa: E501
28
- function_id: StrictInt
28
+ function_id: StrictInt = Field(description="The ID of the function")
29
29
  decompilation: StrictStr
30
30
  calling_convention: StrictStr
31
31
  __properties: ClassVar[List[str]] = ["function_id", "decompilation", "calling_convention"]
@@ -26,7 +26,7 @@ class ELFRelocation(BaseModel):
26
26
  ELFRelocation
27
27
  """ # noqa: E501
28
28
  address: StrictInt
29
- type: StrictInt
29
+ type: StrictStr
30
30
  size: StrictInt
31
31
  addend: StrictInt
32
32
  symbol_name: StrictStr
@@ -16,7 +16,7 @@ import pprint
16
16
  import re # noqa: F401
17
17
  import json
18
18
 
19
- from pydantic import BaseModel, ConfigDict, StrictInt
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt
20
20
  from typing import Any, ClassVar, Dict, List, Optional
21
21
  from revengai.models.matched_function import MatchedFunction
22
22
  from revengai.models.name_confidence import NameConfidence
@@ -27,7 +27,7 @@ class FunctionMatchingResultWithBestMatch(BaseModel):
27
27
  """
28
28
  FunctionMatchingResultWithBestMatch
29
29
  """ # noqa: E501
30
- function_id: StrictInt
30
+ function_id: StrictInt = Field(description="Unique identifier of the function")
31
31
  matched_functions: List[MatchedFunction]
32
32
  confidences: Optional[List[NameConfidence]] = None
33
33
  __properties: ClassVar[List[str]] = ["function_id", "matched_functions", "confidences"]
@@ -16,7 +16,7 @@ import pprint
16
16
  import re # noqa: F401
17
17
  import json
18
18
 
19
- from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt, StrictStr
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
20
20
  from typing import Any, ClassVar, Dict, List, Optional, Union
21
21
  from typing import Optional, Set
22
22
  from typing_extensions import Self
@@ -25,7 +25,7 @@ class FunctionsDetailResponse(BaseModel):
25
25
  """
26
26
  FunctionsDetailResponse
27
27
  """ # noqa: E501
28
- function_id: StrictInt
28
+ function_id: StrictInt = Field(description="Function id")
29
29
  function_name: StrictStr
30
30
  function_vaddr: StrictInt
31
31
  function_size: StrictInt
@@ -34,9 +34,10 @@ class FunctionsDetailResponse(BaseModel):
34
34
  binary_name: StrictStr
35
35
  sha_256_hash: StrictStr
36
36
  debug_hash: Optional[StrictStr]
37
+ debug: StrictBool
37
38
  embedding_3d: Optional[List[Union[StrictFloat, StrictInt]]] = None
38
39
  embedding_1d: Optional[List[Union[StrictFloat, StrictInt]]] = None
39
- __properties: ClassVar[List[str]] = ["function_id", "function_name", "function_vaddr", "function_size", "analysis_id", "binary_id", "binary_name", "sha_256_hash", "debug_hash", "embedding_3d", "embedding_1d"]
40
+ __properties: ClassVar[List[str]] = ["function_id", "function_name", "function_vaddr", "function_size", "analysis_id", "binary_id", "binary_name", "sha_256_hash", "debug_hash", "debug", "embedding_3d", "embedding_1d"]
40
41
 
41
42
  model_config = ConfigDict(
42
43
  populate_by_name=True,
@@ -113,6 +114,7 @@ class FunctionsDetailResponse(BaseModel):
113
114
  "binary_name": obj.get("binary_name"),
114
115
  "sha_256_hash": obj.get("sha_256_hash"),
115
116
  "debug_hash": obj.get("debug_hash"),
117
+ "debug": obj.get("debug"),
116
118
  "embedding_3d": obj.get("embedding_3d"),
117
119
  "embedding_1d": obj.get("embedding_1d")
118
120
  })
@@ -16,7 +16,7 @@ import pprint
16
16
  import re # noqa: F401
17
17
  import json
18
18
 
19
- from pydantic import BaseModel, ConfigDict, StrictBool, StrictFloat, StrictInt, StrictStr
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
20
20
  from typing import Any, ClassVar, Dict, List, Optional, Union
21
21
  from typing import Optional, Set
22
22
  from typing_extensions import Self
@@ -25,7 +25,7 @@ class MatchedFunction(BaseModel):
25
25
  """
26
26
  MatchedFunction
27
27
  """ # noqa: E501
28
- function_id: StrictInt
28
+ function_id: StrictInt = Field(description="Unique identifier of the matched function")
29
29
  binary_id: StrictInt
30
30
  function_name: StrictStr
31
31
  function_vaddr: StrictInt
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: revengai
3
- Version: 2.3.0
3
+ Version: 2.9.1
4
4
  Summary: RevEng.AI API
5
5
  Project-URL: Repository, https://github.com/RevEngAI/sdk-python
6
6
  License-Expression: MIT
@@ -63,7 +63,6 @@ Class | Method | HTTP request | Description
63
63
  *AnalysesCommentsApi* | [**update_analysis_comment**](docs/AnalysesCommentsApi.md#update_analysis_comment) | **PATCH** /v2/analyses/{analysis_id}/comments/{comment_id} | Update a comment
64
64
  *AnalysesCoreApi* | [**create_analysis**](docs/AnalysesCoreApi.md#create_analysis) | **POST** /v2/analyses | Create Analysis
65
65
  *AnalysesCoreApi* | [**delete_analysis**](docs/AnalysesCoreApi.md#delete_analysis) | **DELETE** /v2/analyses/{analysis_id} | Delete Analysis
66
- *AnalysesCoreApi* | [**find_similar_functions_batch**](docs/AnalysesCoreApi.md#find_similar_functions_batch) | **POST** /v2/analyses/{analysis_id}/similarity/functions | Batch Symbol ANN using Analysis ID
67
66
  *AnalysesCoreApi* | [**get_analysis_basic_info**](docs/AnalysesCoreApi.md#get_analysis_basic_info) | **GET** /v2/analyses/{analysis_id}/basic | Gets basic analysis information
68
67
  *AnalysesCoreApi* | [**get_analysis_function_map**](docs/AnalysesCoreApi.md#get_analysis_function_map) | **GET** /v2/analyses/{analysis_id}/func_maps | Get Analysis Function Map
69
68
  *AnalysesCoreApi* | [**get_analysis_logs**](docs/AnalysesCoreApi.md#get_analysis_logs) | **GET** /v2/analyses/{analysis_id}/logs | Gets the logs of an analysis
@@ -111,10 +110,6 @@ Class | Method | HTTP request | Description
111
110
  *CollectionsApi* | [**update_collection**](docs/CollectionsApi.md#update_collection) | **PATCH** /v2/collections/{collection_id} | Updates a collection
112
111
  *CollectionsApi* | [**update_collection_binaries**](docs/CollectionsApi.md#update_collection_binaries) | **PATCH** /v2/collections/{collection_id}/binaries | Updates a collection binaries
113
112
  *CollectionsApi* | [**update_collection_tags**](docs/CollectionsApi.md#update_collection_tags) | **PATCH** /v2/collections/{collection_id}/tags | Updates a collection tags
114
- *ConfidenceApi* | [**get_analysis_tag_score**](docs/ConfidenceApi.md#get_analysis_tag_score) | **POST** /v2/confidence/analysis/{analysis_id}/tag_score | Calculate Tag Confidence Score for an Analysis
115
- *ConfidenceApi* | [**get_analysis_threat_score**](docs/ConfidenceApi.md#get_analysis_threat_score) | **GET** /v2/confidence/analysis/{analysis_id}/threat_score | Calculate Threat Score for Binary
116
- *ConfidenceApi* | [**get_functions_name_score**](docs/ConfidenceApi.md#get_functions_name_score) | **POST** /v2/confidence/functions/name_score | Calculate function name confidence for a set of Functions
117
- *ConfidenceApi* | [**get_functions_threat_score**](docs/ConfidenceApi.md#get_functions_threat_score) | **POST** /v2/confidence/functions/threat_score | Calculate Threat Score for a set of Functions
118
113
  *ExternalSourcesApi* | [**create_external_task_mb**](docs/ExternalSourcesApi.md#create_external_task_mb) | **POST** /v2/analysis/{analysis_id}/external/mb | Pulls data from VirusTotal
119
114
  *ExternalSourcesApi* | [**create_external_task_vt**](docs/ExternalSourcesApi.md#create_external_task_vt) | **POST** /v2/analysis/{analysis_id}/external/vt | Pulls data from VirusTotal
120
115
  *ExternalSourcesApi* | [**get_mb_data**](docs/ExternalSourcesApi.md#get_mb_data) | **GET** /v2/analysis/{analysis_id}/external/mb | Get MalwareBazaar data
@@ -147,7 +142,6 @@ Class | Method | HTTP request | Description
147
142
  *FunctionsCoreApi* | [**get_function_capabilities**](docs/FunctionsCoreApi.md#get_function_capabilities) | **GET** /v2/functions/{function_id}/capabilities | Retrieve a functions capabilities
148
143
  *FunctionsCoreApi* | [**get_function_details**](docs/FunctionsCoreApi.md#get_function_details) | **GET** /v2/functions/{function_id} | Get function details
149
144
  *FunctionsCoreApi* | [**get_function_strings**](docs/FunctionsCoreApi.md#get_function_strings) | **GET** /v2/functions/{function_id}/strings | Get string information found in the function
150
- *FunctionsCoreApi* | [**get_similar_functions**](docs/FunctionsCoreApi.md#get_similar_functions) | **GET** /v2/functions/{function_id}/similar-functions | Get list of similar functions
151
145
  *FunctionsDataTypesApi* | [**generate_function_data_types_for_analysis**](docs/FunctionsDataTypesApi.md#generate_function_data_types_for_analysis) | **POST** /v2/analyses/{analysis_id}/functions/data_types | Generate Function Data Types
152
146
  *FunctionsDataTypesApi* | [**generate_function_data_types_for_functions**](docs/FunctionsDataTypesApi.md#generate_function_data_types_for_functions) | **POST** /v2/functions/data_types | Generate Function Data Types for an arbitrary list of functions
153
147
  *FunctionsDataTypesApi* | [**get_function_data_types**](docs/FunctionsDataTypesApi.md#get_function_data_types) | **GET** /v2/analyses/{analysis_id}/functions/{function_id}/data_types | Get Function Data Types
@@ -174,7 +168,6 @@ Class | Method | HTTP request | Description
174
168
 
175
169
  ## Documentation For Models
176
170
 
177
- - [ANNFunction](docs/ANNFunction.md)
178
171
  - [Addr](docs/Addr.md)
179
172
  - [AiDecompilationRating](docs/AiDecompilationRating.md)
180
173
  - [AiUnstripRequest](docs/AiUnstripRequest.md)
@@ -221,7 +214,6 @@ Class | Method | HTTP request | Description
221
214
  - [BaseResponseBlockCommentsGenerationForFunctionResponse](docs/BaseResponseBlockCommentsGenerationForFunctionResponse.md)
222
215
  - [BaseResponseBlockCommentsOverviewGenerationResponse](docs/BaseResponseBlockCommentsOverviewGenerationResponse.md)
223
216
  - [BaseResponseBool](docs/BaseResponseBool.md)
224
- - [BaseResponseBoxPlotConfidence](docs/BaseResponseBoxPlotConfidence.md)
225
217
  - [BaseResponseCalleesCallerFunctionsResponse](docs/BaseResponseCalleesCallerFunctionsResponse.md)
226
218
  - [BaseResponseCapabilities](docs/BaseResponseCapabilities.md)
227
219
  - [BaseResponseCheckSecurityChecksTaskResponse](docs/BaseResponseCheckSecurityChecksTaskResponse.md)
@@ -254,16 +246,12 @@ Class | Method | HTTP request | Description
254
246
  - [BaseResponseListCollectionResults](docs/BaseResponseListCollectionResults.md)
255
247
  - [BaseResponseListCommentResponse](docs/BaseResponseListCommentResponse.md)
256
248
  - [BaseResponseListDieMatch](docs/BaseResponseListDieMatch.md)
257
- - [BaseResponseListFunctionBoxPlotConfidence](docs/BaseResponseListFunctionBoxPlotConfidence.md)
258
249
  - [BaseResponseListFunctionNameHistory](docs/BaseResponseListFunctionNameHistory.md)
259
250
  - [BaseResponseListSBOM](docs/BaseResponseListSBOM.md)
260
- - [BaseResponseListSimilarFunctionsResponse](docs/BaseResponseListSimilarFunctionsResponse.md)
261
- - [BaseResponseListTagOriginBoxPlotConfidence](docs/BaseResponseListTagOriginBoxPlotConfidence.md)
262
251
  - [BaseResponseListUserActivityResponse](docs/BaseResponseListUserActivityResponse.md)
263
252
  - [BaseResponseLoginResponse](docs/BaseResponseLoginResponse.md)
264
253
  - [BaseResponseLogs](docs/BaseResponseLogs.md)
265
254
  - [BaseResponseModelsResponse](docs/BaseResponseModelsResponse.md)
266
- - [BaseResponseNearestNeighborAnalysis](docs/BaseResponseNearestNeighborAnalysis.md)
267
255
  - [BaseResponseNetworkOverviewResponse](docs/BaseResponseNetworkOverviewResponse.md)
268
256
  - [BaseResponseParams](docs/BaseResponseParams.md)
269
257
  - [BaseResponseProcessDumps](docs/BaseResponseProcessDumps.md)
@@ -292,7 +280,6 @@ Class | Method | HTTP request | Description
292
280
  - [BinaryTaskStatus](docs/BinaryTaskStatus.md)
293
281
  - [Block](docs/Block.md)
294
282
  - [BlockCommentsGenerationForFunctionResponse](docs/BlockCommentsGenerationForFunctionResponse.md)
295
- - [BoxPlotConfidence](docs/BoxPlotConfidence.md)
296
283
  - [CalleeFunctionInfo](docs/CalleeFunctionInfo.md)
297
284
  - [CalleesCallerFunctionsResponse](docs/CalleesCallerFunctionsResponse.md)
298
285
  - [CallerFunctionInfo](docs/CallerFunctionInfo.md)
@@ -348,7 +335,6 @@ Class | Method | HTTP request | Description
348
335
  - [FunctionBlockResponse](docs/FunctionBlockResponse.md)
349
336
  - [FunctionBlocksResponse](docs/FunctionBlocksResponse.md)
350
337
  - [FunctionBoundary](docs/FunctionBoundary.md)
351
- - [FunctionBoxPlotConfidence](docs/FunctionBoxPlotConfidence.md)
352
338
  - [FunctionCapabilityResponse](docs/FunctionCapabilityResponse.md)
353
339
  - [FunctionCommentCreateRequest](docs/FunctionCommentCreateRequest.md)
354
340
  - [FunctionDataTypes](docs/FunctionDataTypes.md)
@@ -367,9 +353,7 @@ Class | Method | HTTP request | Description
367
353
  - [FunctionMatchingFilters](docs/FunctionMatchingFilters.md)
368
354
  - [FunctionMatchingRequest](docs/FunctionMatchingRequest.md)
369
355
  - [FunctionMatchingResultWithBestMatch](docs/FunctionMatchingResultWithBestMatch.md)
370
- - [FunctionNameConfidenceBody](docs/FunctionNameConfidenceBody.md)
371
356
  - [FunctionNameHistory](docs/FunctionNameHistory.md)
372
- - [FunctionNameInput](docs/FunctionNameInput.md)
373
357
  - [FunctionParamResponse](docs/FunctionParamResponse.md)
374
358
  - [FunctionRename](docs/FunctionRename.md)
375
359
  - [FunctionRenameMap](docs/FunctionRenameMap.md)
@@ -406,13 +390,11 @@ Class | Method | HTTP request | Description
406
390
  - [ModelName](docs/ModelName.md)
407
391
  - [ModelsResponse](docs/ModelsResponse.md)
408
392
  - [NameConfidence](docs/NameConfidence.md)
409
- - [NearestNeighbor](docs/NearestNeighbor.md)
410
393
  - [NetworkOverviewDns](docs/NetworkOverviewDns.md)
411
394
  - [NetworkOverviewDnsAnswer](docs/NetworkOverviewDnsAnswer.md)
412
395
  - [NetworkOverviewMetadata](docs/NetworkOverviewMetadata.md)
413
396
  - [NetworkOverviewResponse](docs/NetworkOverviewResponse.md)
414
397
  - [Order](docs/Order.md)
415
- - [Origin](docs/Origin.md)
416
398
  - [PDBDebugModel](docs/PDBDebugModel.md)
417
399
  - [PEModel](docs/PEModel.md)
418
400
  - [PaginationModel](docs/PaginationModel.md)
@@ -439,7 +421,6 @@ Class | Method | HTTP request | Description
439
421
  - [SecurityChecksResult](docs/SecurityChecksResult.md)
440
422
  - [SecurityModel](docs/SecurityModel.md)
441
423
  - [SeverityType](docs/SeverityType.md)
442
- - [SimilarFunctionsResponse](docs/SimilarFunctionsResponse.md)
443
424
  - [SingleCodeCertificateModel](docs/SingleCodeCertificateModel.md)
444
425
  - [SingleCodeSignatureModel](docs/SingleCodeSignatureModel.md)
445
426
  - [SinglePDBEntryModel](docs/SinglePDBEntryModel.md)
@@ -457,15 +438,11 @@ Class | Method | HTTP request | Description
457
438
  - [TTPSElement](docs/TTPSElement.md)
458
439
  - [TTPSOccurance](docs/TTPSOccurance.md)
459
440
  - [Tag](docs/Tag.md)
460
- - [TagConfidenceBody](docs/TagConfidenceBody.md)
461
- - [TagOriginBoxPlotConfidence](docs/TagOriginBoxPlotConfidence.md)
462
441
  - [TagResponse](docs/TagResponse.md)
463
442
  - [TagSearchResponse](docs/TagSearchResponse.md)
464
443
  - [TagSearchResult](docs/TagSearchResult.md)
465
- - [Tags](docs/Tags.md)
466
444
  - [TaskResponse](docs/TaskResponse.md)
467
445
  - [TaskStatus](docs/TaskStatus.md)
468
- - [ThreatScoreFunctionBody](docs/ThreatScoreFunctionBody.md)
469
446
  - [TimestampModel](docs/TimestampModel.md)
470
447
  - [TypeDefinition](docs/TypeDefinition.md)
471
448
  - [UpdateFunctionDataTypes](docs/UpdateFunctionDataTypes.md)
@@ -1,31 +1,30 @@
1
- revengai/__init__.py,sha256=TYfLVOeLbKDJA6hG_MWx-sV0l9PzhA06GqZcAr6K7q4,42410
2
- revengai/api_client.py,sha256=R80AzL7caA-jKA3Y5o41s2__Qd39WcjbAVaK9rohcTI,27669
1
+ revengai/__init__.py,sha256=1Y1lNAhZrNDqdoM7jVHWL2fh8U3eEc1un5jCuNiYpq0,39963
2
+ revengai/api_client.py,sha256=YXcvEZT985gyvnDzG3JRLAmjmkMe3jGMdajDQnFWUGk,27669
3
3
  revengai/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- revengai/configuration.py,sha256=UQbLuThD1QQTS2BofAzwJyVqiy2atRMQ-NXhjEAdSlA,18747
4
+ revengai/configuration.py,sha256=e3vph4359kfiBXdVJQeuscnzBPL_B7RGRll78p-9s-g,18747
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
- revengai/api/__init__.py,sha256=ercHI6-ZXgrfZ-crplF-fSQbSXY4xPellnIkvTt68uc,1320
8
+ revengai/api/__init__.py,sha256=rGASsZc7TI8cLeTmZE9QdSU21oMKIpVEKkq5hCuxVb8,1266
9
9
  revengai/api/analyses_comments_api.py,sha256=p_3N8KmHSBsBtsiW0rAc_LtsM-X3NOJEP86-9VUknoc,46292
10
- revengai/api/analyses_core_api.py,sha256=FXP25U3GIUXm9a6oudJ7m5R_ESAOLIyIdFczPcaX2pg,172165
10
+ revengai/api/analyses_core_api.py,sha256=DuECcqwtVeUpk1oPaPz35OFf6ezJ2lP2bG6vfwbKK_Q,160577
11
11
  revengai/api/analyses_dynamic_execution_api.py,sha256=N1SlAlsokt8us_x11tJpjK5GSAk-kuEECNO9KqtO0dI,71948
12
12
  revengai/api/analyses_results_metadata_api.py,sha256=jRUub32skTygbVgo4K81XLLsJlL__1I99EO55ctuVEw,73593
13
13
  revengai/api/analyses_security_checks_api.py,sha256=YqdVI96mNOb7yyCX2gm3sDABbNr7BMO6jUtvmwKPctk,33219
14
14
  revengai/api/authentication_users_api.py,sha256=V2J0OB6nqHvAXfxsPa3rTzTrHVLt2N9VNqyjOZpYwis,50428
15
15
  revengai/api/binaries_api.py,sha256=dnMTtqXH1huJKE7u2oTdnr9bleU0Gl-XwNwu4gwd1Y0,61182
16
16
  revengai/api/collections_api.py,sha256=M5HSv8acfZAd0ool2yaLCPDIvOPVdPb99S91X82A9Ag,84022
17
- revengai/api/confidence_api.py,sha256=geJC30w7qKsdD_SwkJ20zfB2bBW9ybHjkB3VhSsj1Bg,47439
18
17
  revengai/api/external_sources_api.py,sha256=A5VaijGn6ZwdoymwyhrQlLB0g83CwIg_fEwcDRTCUFw,61041
19
18
  revengai/api/firmware_api.py,sha256=FqBqNseoyuwsvc4tAh7Uz2vIO0OSgBg2O8PkyfxLG1A,22481
20
- revengai/api/functions_ai_decompilation_api.py,sha256=2ALgQsi0m8LUteUCQQa5zE3vmFb_GarRu72H1IK2x84,102514
19
+ revengai/api/functions_ai_decompilation_api.py,sha256=meV4wSMsIgozFFKSK9vrH9RqAif3KaMgMMyp49DFTU0,104419
21
20
  revengai/api/functions_block_comments_api.py,sha256=EWIvKLiiD68OSpHKZvYcGx5Dcb1HOxw1sdzfUMPrAkE,32961
22
- revengai/api/functions_core_api.py,sha256=R2Ary0b03_0adkpVMkihPTldgZTfxZFaxb4GxvsDVs4,152445
21
+ revengai/api/functions_core_api.py,sha256=YAt4a7LxEnn_cFyNlvvm9XZInNikOLolcZkBaaBV92g,136226
23
22
  revengai/api/functions_data_types_api.py,sha256=2juytFuLbsQ_C_f_A3vGCeHHEET1fIoFRcOcCKDWk0E,68945
24
23
  revengai/api/functions_decompilation_api.py,sha256=93tId0XHIUo8zPdCwoFShyvZPbptnxcTkHi9TzGX_60,77546
25
24
  revengai/api/functions_renaming_history_api.py,sha256=2VuhjQliFO0rDcwmnl4s5BA36xgEtps2_qZdsqQI6hw,44111
26
25
  revengai/api/models_api.py,sha256=jZ1wY48GT0JsxY-DgcwkxF5uyQTqygUYOuF8De0BQnw,10402
27
26
  revengai/api/search_api.py,sha256=WQslQMX-fExlxONkJVy4MMfQ0VnDxqzJumYc9dbcRp0,63402
28
- revengai/models/__init__.py,sha256=0C4kUgLYcwAFfFnhMch07vZWbIUkDHmasO4RHWapC7Q,22882
27
+ revengai/models/__init__.py,sha256=u6_uPrp4t4Lb-f4-nOAKj6gC3r85HpBsDqZNhumzgbc,21527
29
28
  revengai/models/addr.py,sha256=-2N-UQsOiZ0eyEAQ7ssk0of8W2fBrXeYdTZXuVt3SZs,4787
30
29
  revengai/models/ai_decompilation_rating.py,sha256=gyay27QJwToUNtK9NARyw731Sg8GFRTufGGUABVYyfo,722
31
30
  revengai/models/ai_unstrip_request.py,sha256=loSXNdHATJmY5yttiUCE-lLEOkuE63qVDTz8U0eCAIc,2596
@@ -44,7 +43,6 @@ revengai/models/analysis_tags.py,sha256=bVeyZzwnPxmpuXdLk4Jpz0fLsjeRjw0kcBLgeiDv
44
43
  revengai/models/analysis_update_request.py,sha256=J4IulQ18iPHjrDMpLn9_NzMg99_W7jS8eCK17feVAtE,3403
45
44
  revengai/models/analysis_update_tags_request.py,sha256=nrJwzS_Yg3SOkvrRcGW6eWfoG_FZn4l9dAZpRQNbV7A,2436
46
45
  revengai/models/analysis_update_tags_response.py,sha256=KRNesNAW57hCPatnsy7ACBZORuKvWfd2XITFLwqtdbA,2936
47
- revengai/models/ann_function.py,sha256=TGwBAPMXJRvMO218j5wvqSl_rFN4hL0slyd595T7xM4,4950
48
46
  revengai/models/app_api_rest_v2_analyses_enums_dynamic_execution_status.py,sha256=x8VdW5OBlfoIoz3IV1HLN-SxeFh7798x6bHIggz7jF8,805
49
47
  revengai/models/app_api_rest_v2_analyses_enums_order_by.py,sha256=Wpv3tfyAeBzN5_jkk4tBtYlJvUn8h0qudg4bvzBtKh8,739
50
48
  revengai/models/app_api_rest_v2_analyses_responses_tag_item.py,sha256=Clh9pPBQKqeqeRiOZG4Fbh77pLPyKMCH3r3nU8Ej0Pc,2921
@@ -73,7 +71,6 @@ revengai/models/base_response_binary_search_response.py,sha256=6r42HIinhq910BgIS
73
71
  revengai/models/base_response_block_comments_generation_for_function_response.py,sha256=v1vUXrhfroz5yL5o2R6fe3ZNUzZNbR1mw4efwKlqfnk,4845
74
72
  revengai/models/base_response_block_comments_overview_generation_response.py,sha256=qgrS6_6UXt8cSvQa0ay4Y30aUQf3-GR5xtNqi9Q75NM,4243
75
73
  revengai/models/base_response_bool.py,sha256=2IOCb-Czu2sWIwJbQK-sPl27yYw5ktdp02yXAQX78nI,4298
76
- revengai/models/base_response_box_plot_confidence.py,sha256=dmMMIylhxk6IVx4NfdvtuvodDUjD75O2vk6Kt_I8t2I,4642
77
74
  revengai/models/base_response_callees_caller_functions_response.py,sha256=X4JE8U1MpKPiGU5C2sDlY--MpXhVvxHbMPcJHNAvZG4,4747
78
75
  revengai/models/base_response_capabilities.py,sha256=p3ylmUCpu7SvxpvOdLr9WfMySIcZkLoDyf5vQe0eWfA,4600
79
76
  revengai/models/base_response_check_security_checks_task_response.py,sha256=VM8b9CUcKdoHJMxwZ4dTxu_le9x92rb0sE3IRKzOxGo,4756
@@ -106,16 +103,12 @@ revengai/models/base_response_get_user_response.py,sha256=WZ_1K4LQtdpxU-C9YMDkWz
106
103
  revengai/models/base_response_list_collection_results.py,sha256=coayvTuniE7AFKPgZQJGgY7oLssr_7JfSIp2sxCA0To,4674
107
104
  revengai/models/base_response_list_comment_response.py,sha256=-N53kILKxC-Tf2KIXMC_Y1FNucFVD1eIUA2--X9r8p0,4823
108
105
  revengai/models/base_response_list_die_match.py,sha256=pT--3OhsfLThX-c6BwVy71sAFOeexgEI5fbDQGul5uA,4767
109
- revengai/models/base_response_list_function_box_plot_confidence.py,sha256=d1W-7g1MWmOHu9ZqCe75yFBGpGp3KfSM3EbwdYrumlg,4905
110
106
  revengai/models/base_response_list_function_name_history.py,sha256=aohU51HD96KIGdf1XMggEcycfotiN-VQB0UG90Kihho,4856
111
107
  revengai/models/base_response_list_sbom.py,sha256=WHmzxBhDBldMSbdd0LkSpAKQDOseGnmC10jrGfqVdz8,4734
112
- revengai/models/base_response_list_similar_functions_response.py,sha256=NBUwtaoUDMCKqan7oLO3OtjF-3Q71frlz89U7Kx7dKk,4896
113
- revengai/models/base_response_list_tag_origin_box_plot_confidence.py,sha256=EOr500dSd9wqwWWYauNOJmtCyJ4CApqDx31FF69R7qU,4914
114
108
  revengai/models/base_response_list_user_activity_response.py,sha256=-7l80h4KNMWM-MXMyKrcZirYPdDqnSeSqfNJSDhxWPM,4864
115
109
  revengai/models/base_response_login_response.py,sha256=bokYfC5m26hdJj-BcQg49koEPLG9WOJdIOmsRSQF2kY,4609
116
110
  revengai/models/base_response_logs.py,sha256=l5cMI9T5dCd0RdAjbAJ3-LfFO6hhJh12bs08cBp3sps,4536
117
111
  revengai/models/base_response_models_response.py,sha256=uI9ufZT_OPQf2DZbNJ2Io64QUJZ8bkt93lZ1hvIXKNM,4617
118
- revengai/models/base_response_nearest_neighbor_analysis.py,sha256=ETdpO8iU4lWU4AC8Hq4LVI65mtbf-Bi3SSaZjzT2s2U,4978
119
112
  revengai/models/base_response_network_overview_response.py,sha256=viasNIBOx6Ugik_tqLGPnjZmINI7o2VBrcRYfqUMsn4,4690
120
113
  revengai/models/base_response_params.py,sha256=gEAWJuJIwps4eOwcHw0EXM9dDAwVMh16E2k_sZXNdco,4552
121
114
  revengai/models/base_response_process_dumps.py,sha256=JyprGmh-W3IB-_-8zEbMvUTdEd_4ggS2apQwNuUh9HA,4601
@@ -144,10 +137,9 @@ revengai/models/binary_search_result.py,sha256=y2T6qBDMvdLtyfRIBzlFMs6hCdMZqQfoF
144
137
  revengai/models/binary_task_status.py,sha256=hHEJcio8AYxUZBFg3WB4dyEcynczzCEIXxTtEGSlDLQ,765
145
138
  revengai/models/block.py,sha256=zeccSEWdoStw5Dfx3TSv4AJV3IoQ7GNhrM7_5HJF9zA,2394
146
139
  revengai/models/block_comments_generation_for_function_response.py,sha256=sVr84JNBPYxYxoLIJct7NVbHyqa_-eFXdX2pKb7zFMg,2538
147
- revengai/models/box_plot_confidence.py,sha256=sbAJu7dTJT-g2cNQeJEK_VxaCASP3fHyXzyU_u9f3Z8,3110
148
- revengai/models/callee_function_info.py,sha256=YsvcXKI9rRc7Iidko0smH9YEde_eSPLCa85sKSbW54A,3742
140
+ revengai/models/callee_function_info.py,sha256=nxFhenG0rxNMmg6TZX_3ktA4oFBM_ft5__gatMJQ0EE,3799
149
141
  revengai/models/callees_caller_functions_response.py,sha256=iFbmAywCAlWTohtDCchXoTTIbdWEZuyenx_3ZJqnUjY,3841
150
- revengai/models/caller_function_info.py,sha256=fPYa5qbFwFVGG-55qJmOj629hd-GX2VeiyIKuKqw2Xk,3744
142
+ revengai/models/caller_function_info.py,sha256=SFc6kXDjrwbKk0Qx-pfdkECbhP3MDmAGpAAjfJ11EQE,3801
151
143
  revengai/models/capabilities.py,sha256=RZCFNuj2M3QdEhEFj3iYUlqCWNdzduXWoTlfnLIqsa4,2980
152
144
  revengai/models/capability.py,sha256=qdfutQ3hD2yTWolGQQ-wsO1rD0v0t9O5A4MEnYpEHVo,2866
153
145
  revengai/models/check_security_checks_task_response.py,sha256=n4fkfbC4IqUZ_x3iLekHBx9NCQKoMk2i9XVfjTSEnMw,2522
@@ -175,13 +167,13 @@ revengai/models/confidence_type.py,sha256=yKWA71P6c128yu8uMNIhyAUozE-HNCHuk09SLI
175
167
  revengai/models/context.py,sha256=2gUyX4vrcmbMzSqM4jj8wFlGinwTj5h-ca0JzAGDgGY,5076
176
168
  revengai/models/created.py,sha256=wMUozBAHSb2jMM9q1RUzzj0_6GDVztSUHNGc2ahINNw,2785
177
169
  revengai/models/decompilation_comment_context.py,sha256=j-kJladft1cKSOobRCsa5RDKtvJ2EIT4LldQ8hjf-_w,3011
178
- revengai/models/decompilation_response.py,sha256=xNqXM3KV43xrgFX1PvlupuvmXbrPvlL2mtx1_XkN2Jc,2675
170
+ revengai/models/decompilation_response.py,sha256=8coxqIkwRnVjLrQNsshXBSzN3KyNQYtkRjS7-HhxiFY,2728
179
171
  revengai/models/die_match.py,sha256=q19UV0BckpB6TKjcZX90Th0nODb4PC_jhuyBUWlkxKs,3002
180
172
  revengai/models/dynamic_execution_status_input.py,sha256=teGQG0pEzDf9SByNdl1ruzli1kak3Yr-0swK9OnaQSo,765
181
173
  revengai/models/elf_dynamic_entry.py,sha256=LwmYrz03k_uApELiVJ3GvsUPQ5_P_Kye2LrWG0qzov8,2466
182
174
  revengai/models/elf_import_model.py,sha256=HxLSoF0LN81ztsERvx5rcpwMd42rvqYB1Yubluwrpsw,2532
183
175
  revengai/models/elf_model.py,sha256=KVWvmnPaTBK0FuUlW-eASHLb5KH-Ol5kkrv5BbeX9_M,7723
184
- revengai/models/elf_relocation.py,sha256=6mTaL_3VKNr2qtcj-uSNR-VBFej4b_mLVc2lhWpFSXc,2889
176
+ revengai/models/elf_relocation.py,sha256=nlUStRhaCAkp5ns_nEqNkyf-FHyBiU6qDE7lrsP41sc,2889
185
177
  revengai/models/elf_section.py,sha256=JKyWOTAyOehA2cq8rSycwImVmeGnob4zb88WZsh0J4U,3182
186
178
  revengai/models/elf_security.py,sha256=Pg6jFYICtHDZW0-cQLdX7QfgYreOopV1TojhBlfYboQ,2652
187
179
  revengai/models/elf_segment.py,sha256=KRrda4pXcJBYep3Y1M-qi7GteqO3pyh_ZYogUCKexEw,3133
@@ -200,7 +192,6 @@ revengai/models/function_block_destination_response.py,sha256=ffcxW67TIbLkO8P8D9
200
192
  revengai/models/function_block_response.py,sha256=KxnssvtH_MUvgQH358TfVZofVKyRHQYftMX36N2zdBY,3960
201
193
  revengai/models/function_blocks_response.py,sha256=8Eu3jA9GKCXVNX7viu3OQxJNsqUZMxBlg498eJ9HFA4,4847
202
194
  revengai/models/function_boundary.py,sha256=tHb-CcAQiJXRZVbR5ihGN_hGiaqbz9HNmF1k8XOTwKo,2631
203
- revengai/models/function_box_plot_confidence.py,sha256=UfHe1ZVqmHmg2BiyJ8MaBbVFpHZI8Yap_IIhgBwfzMk,2852
204
195
  revengai/models/function_capability_response.py,sha256=OQ9v6itmKCseGMeKwExdEsLZHjQXorViBiutuEP-_YY,2535
205
196
  revengai/models/function_comment_create_request.py,sha256=jj-AJ4xDYrcnHudEz7-jgm_6o4iLjlej8VLGq8Hx9yY,3032
206
197
  revengai/models/function_data_types.py,sha256=9VviH65JnIz9GFzdfXDBe7RnI0d88nO-Y3un25HkprM,3728
@@ -218,10 +209,8 @@ revengai/models/function_mapping_full.py,sha256=dax345vnk25zSPVVpAmCFrrOWXzFXW6O
218
209
  revengai/models/function_matching_batch_response.py,sha256=oBglZULIjMvbrlzjymWNKSNERVzftWH7hHBRC3uMoP0,4952
219
210
  revengai/models/function_matching_filters.py,sha256=O5F1PIcPhbumH8z-4KbG7JNoUsx_H3wBZQU9kCZ_boI,3710
220
211
  revengai/models/function_matching_request.py,sha256=doC7Z1UCe0qD1vR0Iu400ni7a94D9WK_QN3GR_56H3I,4690
221
- revengai/models/function_matching_result_with_best_match.py,sha256=87nF8Dq7b0bTmbpB_j5Upfsnv_hqAs_dZJ69zpLmQjs,4050
222
- revengai/models/function_name_confidence_body.py,sha256=Dz8HvTUDn5YcyCie-KMXmOdy8yF8PD-m0XzwpRyyQmg,3415
212
+ revengai/models/function_matching_result_with_best_match.py,sha256=lPuw9GkqzMvPguZRsct9mUZxdTu4swb8i5qwvge9wZM,4114
223
213
  revengai/models/function_name_history.py,sha256=INu3KWYUpQMFfWy6oWl5iSaxrlayKr-wvuiahRCzinI,3265
224
- revengai/models/function_name_input.py,sha256=zKzb0qAJBZKadixsWnRfkTnFHdNGtS2i13QgSeHr4c0,2538
225
214
  revengai/models/function_param_response.py,sha256=hYsmmzxKwYuCh9y_khNvJSinRpvjDXcpi4fJ7xF-F3k,2697
226
215
  revengai/models/function_rename.py,sha256=zDRCmR9Z2szWXYQfPNOu95Zp6AD9dxkr8lohm_yUYMk,2914
227
216
  revengai/models/function_rename_map.py,sha256=BGya5ChAdAj-Ol_J66kn-9of1mZdPqYI_yw2kxLGK8Q,3086
@@ -233,7 +222,7 @@ revengai/models/function_task_response.py,sha256=LYrPw_-vGi7-DpJlxMoAxjLeawKtQ_T
233
222
  revengai/models/function_task_status.py,sha256=0Vy8HFVPjcp509WsHdkAf12aWFnqoZUk2uxg4SPWcd0,771
234
223
  revengai/models/function_type_input.py,sha256=QMdRJxMDBAgs5Gk84qSGPTkYH505AOg3-5IbR7j8bdc,4823
235
224
  revengai/models/function_type_output.py,sha256=jQfK_UAaLh3Asm-JImdW56v2Eq0o05FSIQcGmsLIOHI,4827
236
- revengai/models/functions_detail_response.py,sha256=FqXTOo1-VqLEadwpYsVvOVDOE1Y8W-nNm6f0805j0JM,4230
225
+ revengai/models/functions_detail_response.py,sha256=3_POofVdjVQMIlRxFur8UXx_glnw9AsN_mbwmTBSfj0,4354
237
226
  revengai/models/functions_list_rename.py,sha256=OOi3EPhwAcOItGwoRmuybXTxwMrMVxUK3eQg70x-l1E,2990
238
227
  revengai/models/generate_function_data_types.py,sha256=lAr0jb2p0n8wchhOLX9w7ryn7vbY402hGoR4YcG8hhw,3335
239
228
  revengai/models/generation_status_list.py,sha256=q_SaRG3Ut3bgGMJzPehAYt9OH-oramgRQM2ZpAI6mLQ,3501
@@ -252,19 +241,17 @@ revengai/models/list_collection_results.py,sha256=ZYGFTvOQfI234u67tURX8J0jwb6q-A
252
241
  revengai/models/login_request.py,sha256=48uYtkWFL_Q-hN64P1f15ExGJvbab9XLymBtDduQvg0,2684
253
242
  revengai/models/login_response.py,sha256=O35cqntoQ68IdYCBtHTYhPXlDqw8CIlnK-bNjf6QMO0,2461
254
243
  revengai/models/logs.py,sha256=cV_V-xN6q-yTd7eL-X89ugqz5ifWPsFPo6qYFgpS_Pw,2419
255
- revengai/models/matched_function.py,sha256=P8-1NM9UAaDzIriRPhWk83gEFMPkUeehQDZYt3hSB4g,3910
244
+ revengai/models/matched_function.py,sha256=tNLNeprWQPPxOjHmLdPW3B-3Auk0wAaKvY3pAskmUio,3982
256
245
  revengai/models/matched_function_suggestion.py,sha256=UK5Yrw2xlJ0dcOKIga_Syi0Ly_rWjvio6KPzPNbuDDg,3322
257
246
  revengai/models/meta_model.py,sha256=GbyFJZ9kwvK1Gqg8QnJ1GHpaMs8cMht6j-MY1k0YSt0,2943
258
247
  revengai/models/model_name.py,sha256=lVKok5pWyLcN1rhq1IYccC7uQQrPdyz1oohYRUMRrmw,1271
259
248
  revengai/models/models_response.py,sha256=Ooo2HYuSI4llHg1wUMmyOsisPAXkPhR1y5BSiKh9ckg,2472
260
249
  revengai/models/name_confidence.py,sha256=aVLK7raUE9IQcTEYW7GGjWDh2ciwkLHhlTWST-ZsD7s,2738
261
- revengai/models/nearest_neighbor.py,sha256=iNNOEi_5Byh4lBshr77N7OWKx3hyFW47cxJNjnKwqKg,3980
262
250
  revengai/models/network_overview_dns.py,sha256=Opx12khPVljqHvNf1nJaYV1_HBixed54602xPltzq54,3072
263
251
  revengai/models/network_overview_dns_answer.py,sha256=-kL0ZdVz2xIxp5wOVsJre7Nh048UjD1mKLBbrVI5So0,2491
264
252
  revengai/models/network_overview_metadata.py,sha256=4DXVzlPtPTcJuglqx2Zt9SV_0Ad82Z5T9W8sMuAfqmg,2929
265
253
  revengai/models/network_overview_response.py,sha256=DEP57l6n7BpNQkMbJfNthU5Y1di4kzWcAbygSNsOzmo,3490
266
254
  revengai/models/order.py,sha256=QXGXbyi5sU33Klxv3BWiDIK9HiT8ZhJHfxo2Ae1YTL0,632
267
- revengai/models/origin.py,sha256=RKqKqeo5as1whrA8SbiSxVu2MXD42rR9aV1Qdui0E4g,916
268
255
  revengai/models/pagination_model.py,sha256=Q6QeUrhuxkLqwaaI2VDbhTU3B2X8eRm6jTuLJJYG8T4,2617
269
256
  revengai/models/params.py,sha256=e42OqJBtg2HYYbsIVzAkIvLkTHTvMMUTu2Gr2-b-g-I,3543
270
257
  revengai/models/pdb_debug_model.py,sha256=rfOznNYCYy7ALHfgGdJi5_0vbKN3l_cenq7sZCMaZ4U,2963
@@ -291,7 +278,6 @@ revengai/models/security_checks_response.py,sha256=Y7-VqTZbspYzT9pq_-F3KBPqJRkXn
291
278
  revengai/models/security_checks_result.py,sha256=hZFO1d4rpYvMcX4AbzKOadcA8eb5UFEO7vqxVDm0Q7M,3255
292
279
  revengai/models/security_model.py,sha256=I8hGJXOl8TrEwyTXPdJK8EJ52rPb04jq-Z1LK-owjQ4,3312
293
280
  revengai/models/severity_type.py,sha256=BthwFFN24w2a84KSTg73ah2S-XumVQvGptNaw8_oT2g,737
294
- revengai/models/similar_functions_response.py,sha256=KybvtDa5oq_VgMY5lv8MaixBMl3LdPZnzrz4wcrkLcs,3208
295
281
  revengai/models/single_code_certificate_model.py,sha256=4ubiadCZ6exuqfa1ixDpwZ-FViFTh9O-H62z_wwkots,2922
296
282
  revengai/models/single_code_signature_model.py,sha256=YL0-9WkggCvySfwC4GdL8SChlGgBThZ9iZgIfXBig0w,3159
297
283
  revengai/models/single_pdb_entry_model.py,sha256=IXZFqAq5dT4bojfT12tvbWapeJwro_XpXB5VTr6YzY4,2543
@@ -304,15 +290,11 @@ revengai/models/structure.py,sha256=RbXBB7yS2R1_nEoPTjPe-nk0aNHXil1zBqDPXd80VU0,
304
290
  revengai/models/structure_member.py,sha256=7sziErgaMiBw3Trib5V9ngLvr7O_segwePS7xnVPFko,3193
305
291
  revengai/models/symbols.py,sha256=gbYM4MlO1hqPK1G5AJPxX5xAvhj92gYb5qdHn4WspzE,3271
306
292
  revengai/models/tag.py,sha256=Of0MVVngcaf-oVoZ0nT9_AkoeTE-VxtiscEnMD5CC3o,2342
307
- revengai/models/tag_confidence_body.py,sha256=3aCx9HN8P0wpr0cNQ4PC-Kz_7R4lT3P--GhRuDUTH5s,2902
308
- revengai/models/tag_origin_box_plot_confidence.py,sha256=6ZTJDf0W5p180bbysf72VyxDbFm6_rTY-RjRNTxoDuA,3047
309
293
  revengai/models/tag_response.py,sha256=-2YB180x22lRejqmPR-zg0HzfxRl_uHiUJuyz90Z274,2530
310
294
  revengai/models/tag_search_response.py,sha256=Bk4orvke07_BU2iEAeV6MbCSiUhHITWHb4WAZI1Vm5s,2946
311
295
  revengai/models/tag_search_result.py,sha256=mzWXjPT7T53QQxHxHove0RYOsjHuW3Tx9j3wfGpuuqw,2561
312
- revengai/models/tags.py,sha256=ELagEKS9iZ-RwXu8tnASzc7nKX5W3JZ0a0r3EBWm3xA,2542
313
296
  revengai/models/task_response.py,sha256=pxTT0ISfkN3ZsrHUoGLglmyBefBlB19vGbC4cGT_dhY,2818
314
297
  revengai/models/task_status.py,sha256=NddxpoEoK-NzYBtz-3XljWbi7CIjfgDNJYIb2qetzXc,747
315
- revengai/models/threat_score_function_body.py,sha256=hTcDdMqe7vxQ0jTq4327lmnbQbeDpbhJ00idPviuUDg,2663
316
298
  revengai/models/timestamp_model.py,sha256=QBoOHswy0WNKVfqu-QJOS1I8FyMWY31U1juCBuYwNxk,2640
317
299
  revengai/models/ttps.py,sha256=DWjNzJy0AH0w8wmFnWVKtROWDEfjaGALlzYHLtwHCvc,2681
318
300
  revengai/models/ttps_attack.py,sha256=3c2xqaDHYrj-oC_XJIQ6CaVWdf_TpoSCGCdLFY5_FPc,2427
@@ -329,7 +311,7 @@ revengai/models/vulnerabilities.py,sha256=9t6uoZd3svWyfcZJjmj6zP731Dp47Apb25y8Qt
329
311
  revengai/models/vulnerability.py,sha256=P7rAOAYU5JLLpcRr824-YJgZba5kPb_J9ALV3tSNfLQ,3688
330
312
  revengai/models/vulnerability_type.py,sha256=SyOgfMmELYYc_H84oPkikBpjwngtG5Qw9Q_86a2TPr8,866
331
313
  revengai/models/workspace.py,sha256=chjU62GFvByEmaNd6luMNQVQLP3wlPx1zJgGJ_yyMLA,676
332
- revengai-2.3.0.dist-info/METADATA,sha256=1KsMBvQpIlEoya9vZQ2ccmTLqoLscnT-e_7D3Ryyr2Q,40938
333
- revengai-2.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
334
- revengai-2.3.0.dist-info/licenses/LICENSE.md,sha256=z1S-x9w52sZDqbFdJi0kL5-FLP5CR2aQA0kW8m6scaw,1052
335
- revengai-2.3.0.dist-info/RECORD,,
314
+ revengai-2.9.1.dist-info/METADATA,sha256=e_i2WF-zToPnuA08fzTiTwn4FpDD_aWeXdamwrTWPzM,38681
315
+ revengai-2.9.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
316
+ revengai-2.9.1.dist-info/licenses/LICENSE.md,sha256=z1S-x9w52sZDqbFdJi0kL5-FLP5CR2aQA0kW8m6scaw,1052
317
+ revengai-2.9.1.dist-info/RECORD,,