@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 • 892 B
TypeScript
/**
* Optional settings to control how fields are processed when using a configured Azure Search resource.
*/
export type AzureOpenAiAzureSearchIndexFieldMappingOptions = {
/**
* 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-search-index-field-mapping-options.d.ts.map