@sap-ai-sdk/foundation-models
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
30 lines • 887 B
TypeScript
/**
* Optional settings to control how fields are processed when using a configured Azure Cosmos DB resource.
*/
export type AzureOpenAiAzureCosmosDBFieldMappingOptions = {
/**
* The name of the index field to use as a title.
*/
title_field?: string;
/**
* The name of the index field to use as a URL.
*/
url_field?: string;
/**
* The name of the index field to use as a filepath.
*/
filepath_field?: string;
/**
* The names of index fields that should be treated as content.
*/
content_fields: string[];
/**
* The separator pattern that content fields should use.
*/
content_fields_separator?: string;
/**
* The names of fields that represent vector data.
*/
vector_fields: string[];
} & Record<string, any>;
//# sourceMappingURL=azure-cosmos-db-field-mapping-options.d.ts.map