Skip to content

Commit bc66328

Browse files
committed
Fixes data type.
1 parent 3d90b42 commit bc66328

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

specification/inference/_types/CommonTypes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ export class CustomServiceSettings {
769769
* }
770770
* ```
771771
*/
772-
headers?: object
772+
headers?: UserDefinedValue
773773
/**
774774
* The request configuration object.
775775
*/
@@ -787,7 +787,7 @@ export class CustomServiceSettings {
787787
* }
788788
* ```
789789
*/
790-
secret_parameters: object
790+
secret_parameters: UserDefinedValue
791791
/**
792792
* The URL endpoint to use for the requests.
793793
*/
@@ -821,7 +821,7 @@ export class CustomResponseParams {
821821
* }
822822
* ```
823823
*/
824-
error_parser: object
824+
error_parser: UserDefinedValue
825825
/**
826826
* Specifies the JSON parser that is used to parse the response from the custom service.
827827
* Different task types require different json_parser parameters.
@@ -858,7 +858,7 @@ export class CustomResponseParams {
858858
* }
859859
* }
860860
*/
861-
json_parser: object
861+
json_parser: UserDefinedValue
862862
}
863863

864864
export enum CustomTaskType {
@@ -885,7 +885,7 @@ export class CustomTaskSettings {
885885
* }
886886
* ```
887887
*/
888-
parameters?: object
888+
parameters?: UserDefinedValue
889889
}
890890

891891
export class EisServiceSettings {

0 commit comments

Comments
 (0)