@@ -9359,8 +9359,6 @@ export interface QueryDslRangeQueryBase<T = unknown> extends QueryDslQueryBase {
9359
9359
lt?: T
9360
9360
/** Less than or equal to. */
9361
9361
lte?: T
9362
- from?: T | null
9363
- to?: T | null
9364
9362
}
9365
9363
9366
9364
export type QueryDslRangeRelation = 'within' | 'contains' | 'intersects'
@@ -22110,6 +22108,13 @@ export interface InferenceInferenceEndpointInfo extends InferenceInferenceEndpoi
22110
22108
task_type: InferenceTaskType
22111
22109
}
22112
22110
22111
+ export interface InferenceInferenceEndpointInfoAlibabaCloudAI extends InferenceInferenceEndpoint {
22112
+ /** The inference Id */
22113
+ inference_id: string
22114
+ /** The task type */
22115
+ task_type: InferenceTaskTypeAlibabaCloudAI
22116
+ }
22117
+
22113
22118
export interface InferenceInferenceEndpointInfoJinaAi extends InferenceInferenceEndpoint {
22114
22119
/** The inference Id */
22115
22120
inference_id: string
@@ -22299,6 +22304,8 @@ export type InferenceTaskSettings = any
22299
22304
22300
22305
export type InferenceTaskType = 'sparse_embedding' | 'text_embedding' | 'rerank' | 'completion' | 'chat_completion'
22301
22306
22307
+ export type InferenceTaskTypeAlibabaCloudAI = 'text_embedding' | 'rerank' | 'completion' | 'sparse_embedding'
22308
+
22302
22309
export type InferenceTaskTypeJinaAi = 'text_embedding' | 'rerank'
22303
22310
22304
22311
export interface InferenceTextEmbeddingByteResult {
@@ -22525,7 +22532,7 @@ export interface InferencePutAlibabacloudRequest extends RequestBase {
22525
22532
querystring?: { [key: string]: any } & { task_type?: never, alibabacloud_inference_id?: never, chunking_settings?: never, service?: never, service_settings?: never, task_settings?: never }
22526
22533
}
22527
22534
22528
- export type InferencePutAlibabacloudResponse = InferenceInferenceEndpointInfo
22535
+ export type InferencePutAlibabacloudResponse = InferenceInferenceEndpointInfoAlibabaCloudAI
22529
22536
22530
22537
export interface InferencePutAmazonbedrockRequest extends RequestBase {
22531
22538
/** The type of the inference task that the model will perform. */
0 commit comments