vellum-ai 0.7.5__py3-none-any.whl → 0.7.7__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.
- vellum/__init__.py +76 -72
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/ml_models/client.py +6 -17
- vellum/types/__init__.py +80 -77
- vellum/types/ml_model_display_config_labelled.py +0 -1
- vellum/types/ml_model_display_config_request.py +0 -1
- vellum/types/ml_model_parameter_config.py +14 -14
- vellum/types/ml_model_parameter_config_request.py +14 -14
- vellum/types/ml_model_read.py +0 -6
- vellum/types/{ml_model_build_config.py → named_scenario_input_json_variable_value_request.py} +7 -2
- vellum/types/named_scenario_input_request.py +27 -1
- vellum/types/{array_parameter_config.py → open_api_array_property.py} +6 -6
- vellum/types/{array_parameter_config_request.py → open_api_array_property_request.py} +6 -6
- vellum/types/{boolean_parameter_config.py → open_api_boolean_property.py} +1 -1
- vellum/types/{boolean_parameter_config_request.py → open_api_boolean_property_request.py} +1 -1
- vellum/types/{const_parameter_config.py → open_api_const_property.py} +1 -1
- vellum/types/{const_parameter_config_request.py → open_api_const_property_request.py} +1 -1
- vellum/types/{integer_parameter_config.py → open_api_integer_property.py} +1 -1
- vellum/types/{integer_parameter_config_request.py → open_api_integer_property_request.py} +1 -1
- vellum/types/{number_parameter_config.py → open_api_number_property.py} +1 -1
- vellum/types/{number_parameter_config_request.py → open_api_number_property_request.py} +1 -1
- vellum/types/{object_parameter_config.py → open_api_object_property.py} +7 -7
- vellum/types/{object_parameter_config_request.py → open_api_object_property_request.py} +7 -7
- vellum/types/{one_of_parameter_config.py → open_api_one_of_property.py} +4 -4
- vellum/types/{one_of_parameter_config_request.py → open_api_one_of_property_request.py} +4 -4
- vellum/types/{parameter_config.py → open_api_property.py} +25 -25
- vellum/types/{parameter_config_request.py → open_api_property_request.py} +25 -25
- vellum/types/{string_parameter_config.py → open_api_string_property.py} +1 -1
- vellum/types/{string_parameter_config_request.py → open_api_string_property_request.py} +1 -1
- vellum/types/scenario_input.py +25 -1
- vellum/types/{ml_model_build_config_request.py → scenario_input_json_variable_value.py} +7 -2
- {vellum_ai-0.7.5.dist-info → vellum_ai-0.7.7.dist-info}/METADATA +1 -1
- {vellum_ai-0.7.5.dist-info → vellum_ai-0.7.7.dist-info}/RECORD +35 -35
- {vellum_ai-0.7.5.dist-info → vellum_ai-0.7.7.dist-info}/LICENSE +0 -0
- {vellum_ai-0.7.5.dist-info → vellum_ai-0.7.7.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -14,8 +14,6 @@ from .types import (
|
|
14
14
|
ArrayChatMessageContentItem_Image,
|
15
15
|
ArrayChatMessageContentItem_String,
|
16
16
|
ArrayChatMessageContentRequest,
|
17
|
-
ArrayParameterConfig,
|
18
|
-
ArrayParameterConfigRequest,
|
19
17
|
ArrayVariableValueItem,
|
20
18
|
ArrayVariableValueItem_Error,
|
21
19
|
ArrayVariableValueItem_FunctionCall,
|
@@ -43,8 +41,6 @@ from .types import (
|
|
43
41
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request,
|
44
42
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1,
|
45
43
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request,
|
46
|
-
BooleanParameterConfig,
|
47
|
-
BooleanParameterConfigRequest,
|
48
44
|
ChatHistoryInputRequest,
|
49
45
|
ChatMessage,
|
50
46
|
ChatMessageContent,
|
@@ -82,8 +78,6 @@ from .types import (
|
|
82
78
|
CompilePromptMeta,
|
83
79
|
ConditionalNodeResult,
|
84
80
|
ConditionalNodeResultData,
|
85
|
-
ConstParameterConfig,
|
86
|
-
ConstParameterConfigRequest,
|
87
81
|
CreateTestSuiteTestCaseRequest,
|
88
82
|
DeploymentProviderPayloadResponse,
|
89
83
|
DeploymentProviderPayloadResponsePayload,
|
@@ -198,8 +192,6 @@ from .types import (
|
|
198
192
|
InitiatedWorkflowNodeResultEvent,
|
199
193
|
InstructorVectorizerConfig,
|
200
194
|
InstructorVectorizerConfigRequest,
|
201
|
-
IntegerParameterConfig,
|
202
|
-
IntegerParameterConfigRequest,
|
203
195
|
IterationStateEnum,
|
204
196
|
JsonInputRequest,
|
205
197
|
JsonVariableValue,
|
@@ -215,8 +207,6 @@ from .types import (
|
|
215
207
|
MetadataFilterRuleCombinator,
|
216
208
|
MetadataFilterRuleRequest,
|
217
209
|
MetricNodeResult,
|
218
|
-
MlModelBuildConfig,
|
219
|
-
MlModelBuildConfigRequest,
|
220
210
|
MlModelDeveloper,
|
221
211
|
MlModelDeveloperEnumValueLabel,
|
222
212
|
MlModelDisplayConfigLabelled,
|
@@ -246,8 +236,10 @@ from .types import (
|
|
246
236
|
MlModelTokenizerConfig_Tiktoken,
|
247
237
|
MlModelUsage,
|
248
238
|
NamedScenarioInputChatHistoryVariableValueRequest,
|
239
|
+
NamedScenarioInputJsonVariableValueRequest,
|
249
240
|
NamedScenarioInputRequest,
|
250
241
|
NamedScenarioInputRequest_ChatHistory,
|
242
|
+
NamedScenarioInputRequest_Json,
|
251
243
|
NamedScenarioInputRequest_String,
|
252
244
|
NamedScenarioInputStringVariableValueRequest,
|
253
245
|
NamedTestCaseArrayVariableValue,
|
@@ -320,15 +312,9 @@ from .types import (
|
|
320
312
|
NodeOutputCompiledValue_String,
|
321
313
|
NormalizedLogProbs,
|
322
314
|
NormalizedTokenLogProbs,
|
323
|
-
NumberParameterConfig,
|
324
|
-
NumberParameterConfigRequest,
|
325
315
|
NumberVariableValue,
|
326
316
|
NumberVellumValue,
|
327
317
|
NumberVellumValueRequest,
|
328
|
-
ObjectParameterConfig,
|
329
|
-
ObjectParameterConfigRequest,
|
330
|
-
OneOfParameterConfig,
|
331
|
-
OneOfParameterConfigRequest,
|
332
318
|
OpenAiVectorizerConfig,
|
333
319
|
OpenAiVectorizerConfigRequest,
|
334
320
|
OpenAiVectorizerTextEmbedding3Large,
|
@@ -337,6 +323,40 @@ from .types import (
|
|
337
323
|
OpenAiVectorizerTextEmbedding3SmallRequest,
|
338
324
|
OpenAiVectorizerTextEmbeddingAda002,
|
339
325
|
OpenAiVectorizerTextEmbeddingAda002Request,
|
326
|
+
OpenApiArrayProperty,
|
327
|
+
OpenApiArrayPropertyRequest,
|
328
|
+
OpenApiBooleanProperty,
|
329
|
+
OpenApiBooleanPropertyRequest,
|
330
|
+
OpenApiConstProperty,
|
331
|
+
OpenApiConstPropertyRequest,
|
332
|
+
OpenApiIntegerProperty,
|
333
|
+
OpenApiIntegerPropertyRequest,
|
334
|
+
OpenApiNumberProperty,
|
335
|
+
OpenApiNumberPropertyRequest,
|
336
|
+
OpenApiObjectProperty,
|
337
|
+
OpenApiObjectPropertyRequest,
|
338
|
+
OpenApiOneOfProperty,
|
339
|
+
OpenApiOneOfPropertyRequest,
|
340
|
+
OpenApiProperty,
|
341
|
+
OpenApiPropertyRequest,
|
342
|
+
OpenApiPropertyRequest_Array,
|
343
|
+
OpenApiPropertyRequest_Boolean,
|
344
|
+
OpenApiPropertyRequest_Const,
|
345
|
+
OpenApiPropertyRequest_Integer,
|
346
|
+
OpenApiPropertyRequest_Number,
|
347
|
+
OpenApiPropertyRequest_Object,
|
348
|
+
OpenApiPropertyRequest_OneOf,
|
349
|
+
OpenApiPropertyRequest_String,
|
350
|
+
OpenApiProperty_Array,
|
351
|
+
OpenApiProperty_Boolean,
|
352
|
+
OpenApiProperty_Const,
|
353
|
+
OpenApiProperty_Integer,
|
354
|
+
OpenApiProperty_Number,
|
355
|
+
OpenApiProperty_Object,
|
356
|
+
OpenApiProperty_OneOf,
|
357
|
+
OpenApiProperty_String,
|
358
|
+
OpenApiStringProperty,
|
359
|
+
OpenApiStringPropertyRequest,
|
340
360
|
PaginatedDocumentIndexReadList,
|
341
361
|
PaginatedMlModelReadList,
|
342
362
|
PaginatedSlimDeploymentReadList,
|
@@ -344,24 +364,6 @@ from .types import (
|
|
344
364
|
PaginatedSlimWorkflowDeploymentList,
|
345
365
|
PaginatedTestSuiteRunExecutionList,
|
346
366
|
PaginatedTestSuiteTestCaseList,
|
347
|
-
ParameterConfig,
|
348
|
-
ParameterConfigRequest,
|
349
|
-
ParameterConfigRequest_Array,
|
350
|
-
ParameterConfigRequest_Boolean,
|
351
|
-
ParameterConfigRequest_Const,
|
352
|
-
ParameterConfigRequest_Integer,
|
353
|
-
ParameterConfigRequest_Number,
|
354
|
-
ParameterConfigRequest_Object,
|
355
|
-
ParameterConfigRequest_OneOf,
|
356
|
-
ParameterConfigRequest_String,
|
357
|
-
ParameterConfig_Array,
|
358
|
-
ParameterConfig_Boolean,
|
359
|
-
ParameterConfig_Const,
|
360
|
-
ParameterConfig_Integer,
|
361
|
-
ParameterConfig_Number,
|
362
|
-
ParameterConfig_Object,
|
363
|
-
ParameterConfig_OneOf,
|
364
|
-
ParameterConfig_String,
|
365
367
|
PdfSearchResultMetaSource,
|
366
368
|
PdfSearchResultMetaSourceRequest,
|
367
369
|
ProcessingFailureReasonEnum,
|
@@ -395,8 +397,10 @@ from .types import (
|
|
395
397
|
SandboxScenario,
|
396
398
|
ScenarioInput,
|
397
399
|
ScenarioInputChatHistoryVariableValue,
|
400
|
+
ScenarioInputJsonVariableValue,
|
398
401
|
ScenarioInputStringVariableValue,
|
399
402
|
ScenarioInput_ChatHistory,
|
403
|
+
ScenarioInput_Json,
|
400
404
|
ScenarioInput_String,
|
401
405
|
SearchFiltersRequest,
|
402
406
|
SearchNodeResult,
|
@@ -428,8 +432,6 @@ from .types import (
|
|
428
432
|
StringChatMessageContent,
|
429
433
|
StringChatMessageContentRequest,
|
430
434
|
StringInputRequest,
|
431
|
-
StringParameterConfig,
|
432
|
-
StringParameterConfigRequest,
|
433
435
|
StringVariableValue,
|
434
436
|
StringVellumValue,
|
435
437
|
StringVellumValueRequest,
|
@@ -697,8 +699,6 @@ __all__ = [
|
|
697
699
|
"ArrayChatMessageContentItem_Image",
|
698
700
|
"ArrayChatMessageContentItem_String",
|
699
701
|
"ArrayChatMessageContentRequest",
|
700
|
-
"ArrayParameterConfig",
|
701
|
-
"ArrayParameterConfigRequest",
|
702
702
|
"ArrayVariableValueItem",
|
703
703
|
"ArrayVariableValueItem_Error",
|
704
704
|
"ArrayVariableValueItem_FunctionCall",
|
@@ -727,8 +727,6 @@ __all__ = [
|
|
727
727
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request",
|
728
728
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1",
|
729
729
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request",
|
730
|
-
"BooleanParameterConfig",
|
731
|
-
"BooleanParameterConfigRequest",
|
732
730
|
"ChatHistoryInputRequest",
|
733
731
|
"ChatMessage",
|
734
732
|
"ChatMessageContent",
|
@@ -766,8 +764,6 @@ __all__ = [
|
|
766
764
|
"CompilePromptMeta",
|
767
765
|
"ConditionalNodeResult",
|
768
766
|
"ConditionalNodeResultData",
|
769
|
-
"ConstParameterConfig",
|
770
|
-
"ConstParameterConfigRequest",
|
771
767
|
"CreateTestSuiteTestCaseRequest",
|
772
768
|
"DeploymentProviderPayloadResponse",
|
773
769
|
"DeploymentProviderPayloadResponsePayload",
|
@@ -885,8 +881,6 @@ __all__ = [
|
|
885
881
|
"InitiatedWorkflowNodeResultEvent",
|
886
882
|
"InstructorVectorizerConfig",
|
887
883
|
"InstructorVectorizerConfigRequest",
|
888
|
-
"IntegerParameterConfig",
|
889
|
-
"IntegerParameterConfigRequest",
|
890
884
|
"InternalServerError",
|
891
885
|
"IterationStateEnum",
|
892
886
|
"JsonInputRequest",
|
@@ -903,8 +897,6 @@ __all__ = [
|
|
903
897
|
"MetadataFilterRuleCombinator",
|
904
898
|
"MetadataFilterRuleRequest",
|
905
899
|
"MetricNodeResult",
|
906
|
-
"MlModelBuildConfig",
|
907
|
-
"MlModelBuildConfigRequest",
|
908
900
|
"MlModelDeveloper",
|
909
901
|
"MlModelDeveloperEnumValueLabel",
|
910
902
|
"MlModelDisplayConfigLabelled",
|
@@ -934,8 +926,10 @@ __all__ = [
|
|
934
926
|
"MlModelTokenizerConfig_Tiktoken",
|
935
927
|
"MlModelUsage",
|
936
928
|
"NamedScenarioInputChatHistoryVariableValueRequest",
|
929
|
+
"NamedScenarioInputJsonVariableValueRequest",
|
937
930
|
"NamedScenarioInputRequest",
|
938
931
|
"NamedScenarioInputRequest_ChatHistory",
|
932
|
+
"NamedScenarioInputRequest_Json",
|
939
933
|
"NamedScenarioInputRequest_String",
|
940
934
|
"NamedScenarioInputStringVariableValueRequest",
|
941
935
|
"NamedTestCaseArrayVariableValue",
|
@@ -1009,15 +1003,9 @@ __all__ = [
|
|
1009
1003
|
"NormalizedLogProbs",
|
1010
1004
|
"NormalizedTokenLogProbs",
|
1011
1005
|
"NotFoundError",
|
1012
|
-
"NumberParameterConfig",
|
1013
|
-
"NumberParameterConfigRequest",
|
1014
1006
|
"NumberVariableValue",
|
1015
1007
|
"NumberVellumValue",
|
1016
1008
|
"NumberVellumValueRequest",
|
1017
|
-
"ObjectParameterConfig",
|
1018
|
-
"ObjectParameterConfigRequest",
|
1019
|
-
"OneOfParameterConfig",
|
1020
|
-
"OneOfParameterConfigRequest",
|
1021
1009
|
"OpenAiVectorizerConfig",
|
1022
1010
|
"OpenAiVectorizerConfigRequest",
|
1023
1011
|
"OpenAiVectorizerTextEmbedding3Large",
|
@@ -1026,6 +1014,40 @@ __all__ = [
|
|
1026
1014
|
"OpenAiVectorizerTextEmbedding3SmallRequest",
|
1027
1015
|
"OpenAiVectorizerTextEmbeddingAda002",
|
1028
1016
|
"OpenAiVectorizerTextEmbeddingAda002Request",
|
1017
|
+
"OpenApiArrayProperty",
|
1018
|
+
"OpenApiArrayPropertyRequest",
|
1019
|
+
"OpenApiBooleanProperty",
|
1020
|
+
"OpenApiBooleanPropertyRequest",
|
1021
|
+
"OpenApiConstProperty",
|
1022
|
+
"OpenApiConstPropertyRequest",
|
1023
|
+
"OpenApiIntegerProperty",
|
1024
|
+
"OpenApiIntegerPropertyRequest",
|
1025
|
+
"OpenApiNumberProperty",
|
1026
|
+
"OpenApiNumberPropertyRequest",
|
1027
|
+
"OpenApiObjectProperty",
|
1028
|
+
"OpenApiObjectPropertyRequest",
|
1029
|
+
"OpenApiOneOfProperty",
|
1030
|
+
"OpenApiOneOfPropertyRequest",
|
1031
|
+
"OpenApiProperty",
|
1032
|
+
"OpenApiPropertyRequest",
|
1033
|
+
"OpenApiPropertyRequest_Array",
|
1034
|
+
"OpenApiPropertyRequest_Boolean",
|
1035
|
+
"OpenApiPropertyRequest_Const",
|
1036
|
+
"OpenApiPropertyRequest_Integer",
|
1037
|
+
"OpenApiPropertyRequest_Number",
|
1038
|
+
"OpenApiPropertyRequest_Object",
|
1039
|
+
"OpenApiPropertyRequest_OneOf",
|
1040
|
+
"OpenApiPropertyRequest_String",
|
1041
|
+
"OpenApiProperty_Array",
|
1042
|
+
"OpenApiProperty_Boolean",
|
1043
|
+
"OpenApiProperty_Const",
|
1044
|
+
"OpenApiProperty_Integer",
|
1045
|
+
"OpenApiProperty_Number",
|
1046
|
+
"OpenApiProperty_Object",
|
1047
|
+
"OpenApiProperty_OneOf",
|
1048
|
+
"OpenApiProperty_String",
|
1049
|
+
"OpenApiStringProperty",
|
1050
|
+
"OpenApiStringPropertyRequest",
|
1029
1051
|
"PaginatedDocumentIndexReadList",
|
1030
1052
|
"PaginatedMlModelReadList",
|
1031
1053
|
"PaginatedSlimDeploymentReadList",
|
@@ -1033,24 +1055,6 @@ __all__ = [
|
|
1033
1055
|
"PaginatedSlimWorkflowDeploymentList",
|
1034
1056
|
"PaginatedTestSuiteRunExecutionList",
|
1035
1057
|
"PaginatedTestSuiteTestCaseList",
|
1036
|
-
"ParameterConfig",
|
1037
|
-
"ParameterConfigRequest",
|
1038
|
-
"ParameterConfigRequest_Array",
|
1039
|
-
"ParameterConfigRequest_Boolean",
|
1040
|
-
"ParameterConfigRequest_Const",
|
1041
|
-
"ParameterConfigRequest_Integer",
|
1042
|
-
"ParameterConfigRequest_Number",
|
1043
|
-
"ParameterConfigRequest_Object",
|
1044
|
-
"ParameterConfigRequest_OneOf",
|
1045
|
-
"ParameterConfigRequest_String",
|
1046
|
-
"ParameterConfig_Array",
|
1047
|
-
"ParameterConfig_Boolean",
|
1048
|
-
"ParameterConfig_Const",
|
1049
|
-
"ParameterConfig_Integer",
|
1050
|
-
"ParameterConfig_Number",
|
1051
|
-
"ParameterConfig_Object",
|
1052
|
-
"ParameterConfig_OneOf",
|
1053
|
-
"ParameterConfig_String",
|
1054
1058
|
"PdfSearchResultMetaSource",
|
1055
1059
|
"PdfSearchResultMetaSourceRequest",
|
1056
1060
|
"ProcessingFailureReasonEnum",
|
@@ -1084,8 +1088,10 @@ __all__ = [
|
|
1084
1088
|
"SandboxScenario",
|
1085
1089
|
"ScenarioInput",
|
1086
1090
|
"ScenarioInputChatHistoryVariableValue",
|
1091
|
+
"ScenarioInputJsonVariableValue",
|
1087
1092
|
"ScenarioInputStringVariableValue",
|
1088
1093
|
"ScenarioInput_ChatHistory",
|
1094
|
+
"ScenarioInput_Json",
|
1089
1095
|
"ScenarioInput_String",
|
1090
1096
|
"SearchFiltersRequest",
|
1091
1097
|
"SearchNodeResult",
|
@@ -1117,8 +1123,6 @@ __all__ = [
|
|
1117
1123
|
"StringChatMessageContent",
|
1118
1124
|
"StringChatMessageContentRequest",
|
1119
1125
|
"StringInputRequest",
|
1120
|
-
"StringParameterConfig",
|
1121
|
-
"StringParameterConfigRequest",
|
1122
1126
|
"StringVariableValue",
|
1123
1127
|
"StringVellumValue",
|
1124
1128
|
"StringVellumValueRequest",
|
vellum/core/client_wrapper.py
CHANGED
@@ -9,7 +9,6 @@ from ...core.jsonable_encoder import jsonable_encoder
|
|
9
9
|
from ...core.pydantic_utilities import pydantic_v1
|
10
10
|
from ...core.request_options import RequestOptions
|
11
11
|
from ...types.hosted_by_enum import HostedByEnum
|
12
|
-
from ...types.ml_model_build_config_request import MlModelBuildConfigRequest
|
13
12
|
from ...types.ml_model_developer import MlModelDeveloper
|
14
13
|
from ...types.ml_model_display_config_request import MlModelDisplayConfigRequest
|
15
14
|
from ...types.ml_model_exec_config_request import MlModelExecConfigRequest
|
@@ -89,7 +88,6 @@ class MlModelsClient:
|
|
89
88
|
exec_config: MlModelExecConfigRequest,
|
90
89
|
hosted_by: typing.Optional[HostedByEnum] = OMIT,
|
91
90
|
developed_by: typing.Optional[MlModelDeveloper] = OMIT,
|
92
|
-
build_config: typing.Optional[MlModelBuildConfigRequest] = OMIT,
|
93
91
|
parameter_config: typing.Optional[MlModelParameterConfigRequest] = OMIT,
|
94
92
|
display_config: typing.Optional[MlModelDisplayConfigRequest] = OMIT,
|
95
93
|
visibility: typing.Optional[VisibilityEnum] = OMIT,
|
@@ -173,9 +171,6 @@ class MlModelsClient:
|
|
173
171
|
* `TII` - TII
|
174
172
|
* `WIZARDLM` - WIZARDLM
|
175
173
|
|
176
|
-
build_config : typing.Optional[MlModelBuildConfigRequest]
|
177
|
-
Configuration for how the ML Model was built.
|
178
|
-
|
179
174
|
parameter_config : typing.Optional[MlModelParameterConfigRequest]
|
180
175
|
Configuration for the ML Model's parameters.
|
181
176
|
|
@@ -226,7 +221,6 @@ class MlModelsClient:
|
|
226
221
|
"family": family,
|
227
222
|
"hosted_by": hosted_by,
|
228
223
|
"developed_by": developed_by,
|
229
|
-
"build_config": build_config,
|
230
224
|
"exec_config": exec_config,
|
231
225
|
"parameter_config": parameter_config,
|
232
226
|
"display_config": display_config,
|
@@ -250,7 +244,7 @@ class MlModelsClient:
|
|
250
244
|
Parameters
|
251
245
|
----------
|
252
246
|
id : str
|
253
|
-
|
247
|
+
Either the ML Model's ID or its unique name
|
254
248
|
|
255
249
|
request_options : typing.Optional[RequestOptions]
|
256
250
|
Request-specific configuration.
|
@@ -299,7 +293,7 @@ class MlModelsClient:
|
|
299
293
|
Parameters
|
300
294
|
----------
|
301
295
|
id : str
|
302
|
-
|
296
|
+
Either the ML Model's ID or its unique name
|
303
297
|
|
304
298
|
display_config : typing.Optional[MlModelDisplayConfigRequest]
|
305
299
|
Configuration for how to display the ML Model.
|
@@ -361,7 +355,7 @@ class MlModelsClient:
|
|
361
355
|
Parameters
|
362
356
|
----------
|
363
357
|
id : str
|
364
|
-
|
358
|
+
Either the ML Model's ID or its unique name
|
365
359
|
|
366
360
|
display_config : typing.Optional[MlModelDisplayConfigRequest]
|
367
361
|
Configuration for how to display the ML Model.
|
@@ -484,7 +478,6 @@ class AsyncMlModelsClient:
|
|
484
478
|
exec_config: MlModelExecConfigRequest,
|
485
479
|
hosted_by: typing.Optional[HostedByEnum] = OMIT,
|
486
480
|
developed_by: typing.Optional[MlModelDeveloper] = OMIT,
|
487
|
-
build_config: typing.Optional[MlModelBuildConfigRequest] = OMIT,
|
488
481
|
parameter_config: typing.Optional[MlModelParameterConfigRequest] = OMIT,
|
489
482
|
display_config: typing.Optional[MlModelDisplayConfigRequest] = OMIT,
|
490
483
|
visibility: typing.Optional[VisibilityEnum] = OMIT,
|
@@ -568,9 +561,6 @@ class AsyncMlModelsClient:
|
|
568
561
|
* `TII` - TII
|
569
562
|
* `WIZARDLM` - WIZARDLM
|
570
563
|
|
571
|
-
build_config : typing.Optional[MlModelBuildConfigRequest]
|
572
|
-
Configuration for how the ML Model was built.
|
573
|
-
|
574
564
|
parameter_config : typing.Optional[MlModelParameterConfigRequest]
|
575
565
|
Configuration for the ML Model's parameters.
|
576
566
|
|
@@ -629,7 +619,6 @@ class AsyncMlModelsClient:
|
|
629
619
|
"family": family,
|
630
620
|
"hosted_by": hosted_by,
|
631
621
|
"developed_by": developed_by,
|
632
|
-
"build_config": build_config,
|
633
622
|
"exec_config": exec_config,
|
634
623
|
"parameter_config": parameter_config,
|
635
624
|
"display_config": display_config,
|
@@ -653,7 +642,7 @@ class AsyncMlModelsClient:
|
|
653
642
|
Parameters
|
654
643
|
----------
|
655
644
|
id : str
|
656
|
-
|
645
|
+
Either the ML Model's ID or its unique name
|
657
646
|
|
658
647
|
request_options : typing.Optional[RequestOptions]
|
659
648
|
Request-specific configuration.
|
@@ -710,7 +699,7 @@ class AsyncMlModelsClient:
|
|
710
699
|
Parameters
|
711
700
|
----------
|
712
701
|
id : str
|
713
|
-
|
702
|
+
Either the ML Model's ID or its unique name
|
714
703
|
|
715
704
|
display_config : typing.Optional[MlModelDisplayConfigRequest]
|
716
705
|
Configuration for how to display the ML Model.
|
@@ -780,7 +769,7 @@ class AsyncMlModelsClient:
|
|
780
769
|
Parameters
|
781
770
|
----------
|
782
771
|
id : str
|
783
|
-
|
772
|
+
Either the ML Model's ID or its unique name
|
784
773
|
|
785
774
|
display_config : typing.Optional[MlModelDisplayConfigRequest]
|
786
775
|
Configuration for how to display the ML Model.
|