mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-27 15:38:43 +00:00
MINOR - djl local embedding (#23563)
* feat: config for djl local embedding * Update generated TypeScript types --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
This commit is contained in:
parent
e604c67686
commit
62b37477ef
@ -152,6 +152,17 @@
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"djl": {
|
||||
"description": "Embedding generation using Deep Java Library (DJL)",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"embeddingModel": {
|
||||
"description": "DJL model name for embedding generation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
||||
@ -89,6 +89,10 @@ export interface NaturalLanguageSearch {
|
||||
* AWS Bedrock configuration for natural language processing
|
||||
*/
|
||||
bedrock?: Bedrock;
|
||||
/**
|
||||
* Embedding generation using Deep Java Library (DJL)
|
||||
*/
|
||||
djl?: Djl;
|
||||
/**
|
||||
* The provider to use for generating vector embeddings (e.g., bedrock, openai).
|
||||
*/
|
||||
@ -137,6 +141,16 @@ export interface Bedrock {
|
||||
useIamRole?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Embedding generation using Deep Java Library (DJL)
|
||||
*/
|
||||
export interface Djl {
|
||||
/**
|
||||
* DJL model name for embedding generation
|
||||
*/
|
||||
embeddingModel?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* This schema defines the language options available for search index mappings.
|
||||
*/
|
||||
|
||||
@ -1847,6 +1847,10 @@ export interface NaturalLanguageSearch {
|
||||
* AWS Bedrock configuration for natural language processing
|
||||
*/
|
||||
bedrock?: Bedrock;
|
||||
/**
|
||||
* Embedding generation using Deep Java Library (DJL)
|
||||
*/
|
||||
djl?: Djl;
|
||||
/**
|
||||
* The provider to use for generating vector embeddings (e.g., bedrock, openai).
|
||||
*/
|
||||
@ -1895,6 +1899,16 @@ export interface Bedrock {
|
||||
useIamRole?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Embedding generation using Deep Java Library (DJL)
|
||||
*/
|
||||
export interface Djl {
|
||||
/**
|
||||
* DJL model name for embedding generation
|
||||
*/
|
||||
embeddingModel?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Configuration for Natural Language Query capabilities
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user