-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathCreateAutoEmbeddingVectorSearchIndexModel.cs
More file actions
186 lines (169 loc) · 9.06 KB
/
CreateAutoEmbeddingVectorSearchIndexModel.cs
File metadata and controls
186 lines (169 loc) · 9.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/* Copyright 2010-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using MongoDB.Bson;
namespace MongoDB.Driver;
/// <summary>
/// Defines a vector index model for an auto-embedding vector index using strongly-typed C# APIs.
/// </summary>
public sealed class CreateAutoEmbeddingVectorSearchIndexModel<TDocument> : CreateVectorSearchIndexModelBase<TDocument>
{
/// <summary>
/// The name of the embedding model to use, such as "voyage-4", "voyage-4-large", etc.
/// </summary>
public string AutoEmbeddingModelName { get; }
/// <summary>
/// Indicates the type of data that will be embedded for an auto-embedding index.
/// </summary>
public VectorEmbeddingModality Modality { get; init; } = VectorEmbeddingModality.Text;
/// <summary>
/// The <see cref="VectorSimilarity"/> to use to search for top K-nearest neighbors. For auto-embedding indexes,
/// this defaults to <see cref="VectorSimilarity.DotProduct"/> when
/// <see cref="CreateVectorSearchIndexModelBase{TDocument}.Quantization"/> is
/// <see cref="VectorQuantization.None"/> or <see cref="VectorQuantization.Scalar"/>, and
/// <see cref="VectorSimilarity.Euclidean"/> when
/// <see cref="CreateVectorSearchIndexModelBase{TDocument}.Quantization"/> is
/// <see cref="VectorQuantization.Binary"/> or <see cref="VectorQuantization.BinaryNoRescore"/>.
/// </summary>
public VectorSimilarity? Similarity { get; init; }
/// <summary>
/// Initializes a new instance of the <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> for a vector index
/// that will automatically create embeddings from a given field in the document. The embedding model to use must
/// be passed to this constructor.
/// </summary>
/// <param name="name">The index name.</param>
/// <param name="field">The field containing the vectors to index.</param>
/// <param name="embeddingModelName">The name of the embedding model to use, such as "voyage-4", "voyage-4-large", etc.</param>
/// <param name="filterFields">Fields that may be used as filters in the vector query.</param>
public CreateAutoEmbeddingVectorSearchIndexModel(
FieldDefinition<TDocument> field,
string name,
string embeddingModelName,
params FieldDefinition<TDocument>[] filterFields)
: base(field, name, filterFields)
{
AutoEmbeddingModelName = embeddingModelName;
}
/// <summary>
/// Initializes a new instance of the <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> for a vector index
/// that will automatically create embeddings from a given field in the document. The embedding model to use must
/// be passed to this constructor.
/// </summary>
/// <param name="name">The index name.</param>
/// <param name="field">An expression pointing to the field containing the vectors to index.</param>
/// <param name="embeddingModelName">The name of the embedding model to use, such as "voyage-4", "voyage-4-large", etc.</param>
/// <param name="filterFields">Expressions pointing to fields that may be used as filters in the vector query.</param>
public CreateAutoEmbeddingVectorSearchIndexModel(
Expression<Func<TDocument, object>> field,
string name,
string embeddingModelName,
params Expression<Func<TDocument, object>>[] filterFields)
: this(
new ExpressionFieldDefinition<TDocument>(field),
name,
embeddingModelName,
filterFields?
.Select(f => (FieldDefinition<TDocument>)new ExpressionFieldDefinition<TDocument>(f))
.ToArray())
{
}
/// <summary>
/// Creates a new <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> with the given fields
/// configured to be stored in the index. Note that storing full documents might significantly impact
/// performance during indexing and querying. Explicitly storing vector fields is not recommended.
/// </summary>
/// <param name="includedStoredFields">The fields to store.</param>
/// <returns>A new model with the fields configured.</returns>
public CreateAutoEmbeddingVectorSearchIndexModel<TDocument> WithIncludedStoredFields(
params FieldDefinition<TDocument>[] includedStoredFields)
=> new(Field, Name, AutoEmbeddingModelName, FilterFields.ToArray())
{
IncludedStoredFields = includedStoredFields,
ExcludedStoredFields = null,
Modality = Modality,
Similarity = Similarity,
Dimensions = Dimensions,
Quantization = Quantization,
HnswMaxEdges = HnswMaxEdges,
HnswNumEdgeCandidates = HnswNumEdgeCandidates,
};
/// <summary>
/// Creates a new <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> with the given fields
/// configured to be stored in the index. Note that storing full documents might significantly impact
/// performance during indexing and querying. Explicitly storing vector fields is not recommended.
/// </summary>
/// <param name="includedStoredFields">The fields to store.</param>
/// <returns>A new model with the fields configured.</returns>
public CreateAutoEmbeddingVectorSearchIndexModel<TDocument> WithIncludedStoredFields(
params Expression<Func<TDocument, object>>[] includedStoredFields)
=> WithIncludedStoredFields(includedStoredFields
.Select(f => (FieldDefinition<TDocument>)new ExpressionFieldDefinition<TDocument>(f)).ToArray());
/// <summary>
/// Creates a new <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> with the given fields
/// configured to be excluded from being stored in the index. This is typically used to exclude vector fields
/// from being stored when other fields should be stored.
/// </summary>
/// <param name="excludedStoredFields">The fields to exclude from being stored.</param>
/// <returns>A new model with the fields configured.</returns>
public CreateAutoEmbeddingVectorSearchIndexModel<TDocument> WithExcludedStoredFields(
params FieldDefinition<TDocument>[] excludedStoredFields)
=> new(Field, Name, AutoEmbeddingModelName, FilterFields.ToArray())
{
ExcludedStoredFields = excludedStoredFields,
IncludedStoredFields = null,
Modality = Modality,
Similarity = Similarity,
Dimensions = Dimensions,
Quantization = Quantization,
HnswMaxEdges = HnswMaxEdges,
HnswNumEdgeCandidates = HnswNumEdgeCandidates,
};
/// <summary>
/// Creates a new <see cref="CreateAutoEmbeddingVectorSearchIndexModel{TDocument}"/> with the given fields
/// configured to be excluded from being stored in the index. This is typically used to exclude vector fields
/// from being stored when other fields should be stored.
/// </summary>
/// <param name="excludedStoredFields">The fields to exclude from being stored.</param>
/// <returns>A new model with the fields configured.</returns>
public CreateAutoEmbeddingVectorSearchIndexModel<TDocument> WithExcludedStoredFields(
params Expression<Func<TDocument, object>>[] excludedStoredFields)
=> WithExcludedStoredFields(excludedStoredFields
.Select(f => (FieldDefinition<TDocument>)new ExpressionFieldDefinition<TDocument>(f)).ToArray());
/// <inheritdoc/>
internal override BsonDocument Render(RenderArgs<TDocument> renderArgs)
{
var similarityValue = Similarity == VectorSimilarity.DotProduct
? "dotProduct" // Because neither "DotProduct" or "dotproduct" are allowed.
: Similarity?.ToString().ToLowerInvariant();
var vectorField = new BsonDocument
{
{ "type", "autoEmbed" },
{ "path", Field.Render(renderArgs).FieldName },
{ "modality", Modality.ToString().ToLowerInvariant() },
{ "model", AutoEmbeddingModelName },
{ "similarity", similarityValue, similarityValue != null },
{ "numDimensions", Dimensions, Dimensions != 0 },
};
RenderCommonFieldElements(renderArgs, vectorField);
var fieldDocuments = new List<BsonDocument> { vectorField };
RenderFilterFields(renderArgs, fieldDocuments);
var indexDefinition = new BsonDocument { { "fields", new BsonArray(fieldDocuments) } };
RenderCommonElements(renderArgs, indexDefinition);
return indexDefinition;
}
}