revengai 1.86.0__py3-none-any.whl → 1.89.2__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.
- revengai/__init__.py +13 -1
- revengai/api/functions_core_api.py +627 -25
- revengai/api_client.py +1 -1
- revengai/configuration.py +2 -2
- revengai/models/__init__.py +6 -0
- revengai/models/analysis_function_matching_request.py +98 -0
- revengai/models/function_matching_batch_response.py +117 -0
- revengai/models/function_matching_filters.py +103 -0
- revengai/models/function_matching_request.py +102 -0
- revengai/models/function_matching_result_with_best_match.py +106 -0
- revengai/models/matched_function.py +114 -0
- {revengai-1.86.0.dist-info → revengai-1.89.2.dist-info}/METADATA +9 -1
- {revengai-1.86.0.dist-info → revengai-1.89.2.dist-info}/RECORD +14 -8
- {revengai-1.86.0.dist-info → revengai-1.89.2.dist-info}/WHEEL +0 -0
revengai/__init__.py
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
""" # noqa: E501
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
__version__ = "v1.
|
|
16
|
+
__version__ = "v1.89.2"
|
|
17
17
|
|
|
18
18
|
# Define package exports
|
|
19
19
|
__all__ = [
|
|
@@ -55,6 +55,7 @@ __all__ = [
|
|
|
55
55
|
"AnalysisCreateResponse",
|
|
56
56
|
"AnalysisDetailResponse",
|
|
57
57
|
"AnalysisFunctionMapping",
|
|
58
|
+
"AnalysisFunctionMatchingRequest",
|
|
58
59
|
"AnalysisFunctions",
|
|
59
60
|
"AnalysisRecord",
|
|
60
61
|
"AnalysisScope",
|
|
@@ -241,6 +242,10 @@ __all__ = [
|
|
|
241
242
|
"FunctionLocalVariableResponse",
|
|
242
243
|
"FunctionMapping",
|
|
243
244
|
"FunctionMappingFull",
|
|
245
|
+
"FunctionMatchingBatchResponse",
|
|
246
|
+
"FunctionMatchingFilters",
|
|
247
|
+
"FunctionMatchingRequest",
|
|
248
|
+
"FunctionMatchingResultWithBestMatch",
|
|
244
249
|
"FunctionNameConfidenceBody",
|
|
245
250
|
"FunctionNameHistory",
|
|
246
251
|
"FunctionNameInput",
|
|
@@ -275,6 +280,7 @@ __all__ = [
|
|
|
275
280
|
"LoginRequest",
|
|
276
281
|
"LoginResponse",
|
|
277
282
|
"Logs",
|
|
283
|
+
"MatchedFunction",
|
|
278
284
|
"MatchedFunctionSuggestion",
|
|
279
285
|
"MetaModel",
|
|
280
286
|
"ModelName",
|
|
@@ -397,6 +403,7 @@ from revengai.models.analysis_create_request import AnalysisCreateRequest as Ana
|
|
|
397
403
|
from revengai.models.analysis_create_response import AnalysisCreateResponse as AnalysisCreateResponse
|
|
398
404
|
from revengai.models.analysis_detail_response import AnalysisDetailResponse as AnalysisDetailResponse
|
|
399
405
|
from revengai.models.analysis_function_mapping import AnalysisFunctionMapping as AnalysisFunctionMapping
|
|
406
|
+
from revengai.models.analysis_function_matching_request import AnalysisFunctionMatchingRequest as AnalysisFunctionMatchingRequest
|
|
400
407
|
from revengai.models.analysis_functions import AnalysisFunctions as AnalysisFunctions
|
|
401
408
|
from revengai.models.analysis_record import AnalysisRecord as AnalysisRecord
|
|
402
409
|
from revengai.models.analysis_scope import AnalysisScope as AnalysisScope
|
|
@@ -583,6 +590,10 @@ from revengai.models.function_info_output import FunctionInfoOutput as FunctionI
|
|
|
583
590
|
from revengai.models.function_local_variable_response import FunctionLocalVariableResponse as FunctionLocalVariableResponse
|
|
584
591
|
from revengai.models.function_mapping import FunctionMapping as FunctionMapping
|
|
585
592
|
from revengai.models.function_mapping_full import FunctionMappingFull as FunctionMappingFull
|
|
593
|
+
from revengai.models.function_matching_batch_response import FunctionMatchingBatchResponse as FunctionMatchingBatchResponse
|
|
594
|
+
from revengai.models.function_matching_filters import FunctionMatchingFilters as FunctionMatchingFilters
|
|
595
|
+
from revengai.models.function_matching_request import FunctionMatchingRequest as FunctionMatchingRequest
|
|
596
|
+
from revengai.models.function_matching_result_with_best_match import FunctionMatchingResultWithBestMatch as FunctionMatchingResultWithBestMatch
|
|
586
597
|
from revengai.models.function_name_confidence_body import FunctionNameConfidenceBody as FunctionNameConfidenceBody
|
|
587
598
|
from revengai.models.function_name_history import FunctionNameHistory as FunctionNameHistory
|
|
588
599
|
from revengai.models.function_name_input import FunctionNameInput as FunctionNameInput
|
|
@@ -617,6 +628,7 @@ from revengai.models.list_collection_results import ListCollectionResults as Lis
|
|
|
617
628
|
from revengai.models.login_request import LoginRequest as LoginRequest
|
|
618
629
|
from revengai.models.login_response import LoginResponse as LoginResponse
|
|
619
630
|
from revengai.models.logs import Logs as Logs
|
|
631
|
+
from revengai.models.matched_function import MatchedFunction as MatchedFunction
|
|
620
632
|
from revengai.models.matched_function_suggestion import MatchedFunctionSuggestion as MatchedFunctionSuggestion
|
|
621
633
|
from revengai.models.meta_model import MetaModel as MetaModel
|
|
622
634
|
from revengai.models.model_name import ModelName as ModelName
|