Skip to content

Commit 858ab11

Browse files
authored
Merge branch 'main' into release-please--branches--main--components--genai
2 parents 3f5f617 + 50d81ca commit 858ab11

5 files changed

Lines changed: 6 additions & 1 deletion

File tree

api-report/genai-node.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,7 @@ export interface FileSearchStore {
12791279
activeDocumentsCount?: string;
12801280
createTime?: string;
12811281
displayName?: string;
1282+
embeddingModel?: string;
12821283
failedDocumentsCount?: string;
12831284
name?: string;
12841285
pendingDocumentsCount?: string;

api-report/genai-web.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,7 @@ export interface FileSearchStore {
12791279
activeDocumentsCount?: string;
12801280
createTime?: string;
12811281
displayName?: string;
1282+
embeddingModel?: string;
12821283
failedDocumentsCount?: string;
12831284
name?: string;
12841285
pendingDocumentsCount?: string;

api-report/genai.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,7 @@ export interface FileSearchStore {
12791279
activeDocumentsCount?: string;
12801280
createTime?: string;
12811281
displayName?: string;
1282+
embeddingModel?: string;
12821283
failedDocumentsCount?: string;
12831284
name?: string;
12841285
pendingDocumentsCount?: string;

src/converters/_filesearchstores_converters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function createFileSearchStoreConfigToMldev(
2929
if (parentObject !== undefined && fromEmbeddingModel != null) {
3030
common.setValueByPath(
3131
parentObject,
32-
['_query', 'embeddingModel'],
32+
['embeddingModel'],
3333
t.tModel(apiClient, fromEmbeddingModel),
3434
);
3535
}

src/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5784,6 +5784,8 @@ export declare interface FileSearchStore {
57845784
/** The size of raw bytes ingested into the FileSearchStore. This is the
57855785
total size of all the documents in the FileSearchStore. */
57865786
sizeBytes?: string;
5787+
/** The embedding model used by the FileSearchStore. */
5788+
embeddingModel?: string;
57875789
}
57885790

57895791
/** Optional parameters for getting a FileSearchStore. */

0 commit comments

Comments
 (0)