@memberjunction/core-entities 2.83.0 → 2.85.0
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.
|
@@ -9707,10 +9707,25 @@ exports.QuerySchema = zod_1.z.object({
|
|
|
9707
9707
|
* * Display Name: Cache Max Size
|
|
9708
9708
|
* * SQL Data Type: int
|
|
9709
9709
|
* * Description: Maximum number of cached result sets for this query. NULL uses default size limit.`),
|
|
9710
|
+
EmbeddingVector: zod_1.z.string().nullable().describe(`
|
|
9711
|
+
* * Field Name: EmbeddingVector
|
|
9712
|
+
* * Display Name: Embedding Vector
|
|
9713
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
9714
|
+
* * Description: Optional JSON-serialized embedding vector for the query, used for similarity search and query analysis`),
|
|
9715
|
+
EmbeddingModelID: zod_1.z.string().nullable().describe(`
|
|
9716
|
+
* * Field Name: EmbeddingModelID
|
|
9717
|
+
* * Display Name: Embedding Model ID
|
|
9718
|
+
* * SQL Data Type: uniqueidentifier
|
|
9719
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
9720
|
+
* * Description: The AI Model used to generate the embedding vector for this query. Required for vector similarity comparisons.`),
|
|
9710
9721
|
Category: zod_1.z.string().nullable().describe(`
|
|
9711
9722
|
* * Field Name: Category
|
|
9712
9723
|
* * Display Name: Category
|
|
9713
9724
|
* * SQL Data Type: nvarchar(50)`),
|
|
9725
|
+
EmbeddingModel: zod_1.z.string().nullable().describe(`
|
|
9726
|
+
* * Field Name: EmbeddingModel
|
|
9727
|
+
* * Display Name: Embedding Model
|
|
9728
|
+
* * SQL Data Type: nvarchar(50)`),
|
|
9714
9729
|
});
|
|
9715
9730
|
/**
|
|
9716
9731
|
* zod schema definition for the entity Query Categories
|
|
@@ -37897,6 +37912,31 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
37897
37912
|
this.Set('CacheMaxSize', value);
|
|
37898
37913
|
}
|
|
37899
37914
|
/**
|
|
37915
|
+
* * Field Name: EmbeddingVector
|
|
37916
|
+
* * Display Name: Embedding Vector
|
|
37917
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
37918
|
+
* * Description: Optional JSON-serialized embedding vector for the query, used for similarity search and query analysis
|
|
37919
|
+
*/
|
|
37920
|
+
get EmbeddingVector() {
|
|
37921
|
+
return this.Get('EmbeddingVector');
|
|
37922
|
+
}
|
|
37923
|
+
set EmbeddingVector(value) {
|
|
37924
|
+
this.Set('EmbeddingVector', value);
|
|
37925
|
+
}
|
|
37926
|
+
/**
|
|
37927
|
+
* * Field Name: EmbeddingModelID
|
|
37928
|
+
* * Display Name: Embedding Model ID
|
|
37929
|
+
* * SQL Data Type: uniqueidentifier
|
|
37930
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
37931
|
+
* * Description: The AI Model used to generate the embedding vector for this query. Required for vector similarity comparisons.
|
|
37932
|
+
*/
|
|
37933
|
+
get EmbeddingModelID() {
|
|
37934
|
+
return this.Get('EmbeddingModelID');
|
|
37935
|
+
}
|
|
37936
|
+
set EmbeddingModelID(value) {
|
|
37937
|
+
this.Set('EmbeddingModelID', value);
|
|
37938
|
+
}
|
|
37939
|
+
/**
|
|
37900
37940
|
* * Field Name: Category
|
|
37901
37941
|
* * Display Name: Category
|
|
37902
37942
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -37904,6 +37944,14 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
37904
37944
|
get Category() {
|
|
37905
37945
|
return this.Get('Category');
|
|
37906
37946
|
}
|
|
37947
|
+
/**
|
|
37948
|
+
* * Field Name: EmbeddingModel
|
|
37949
|
+
* * Display Name: Embedding Model
|
|
37950
|
+
* * SQL Data Type: nvarchar(50)
|
|
37951
|
+
*/
|
|
37952
|
+
get EmbeddingModel() {
|
|
37953
|
+
return this.Get('EmbeddingModel');
|
|
37954
|
+
}
|
|
37907
37955
|
};
|
|
37908
37956
|
exports.QueryEntity = QueryEntity;
|
|
37909
37957
|
exports.QueryEntity = QueryEntity = __decorate([
|