UNPKG

@sap-ai-sdk/orchestration

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

26 lines 538 B
/** * Representation of the 'Citation' schema. */ export type Citation = { /** * Unique identifier for inline citation */ ref_id?: number; /** * Title of the citation */ title: string; /** * URL of the citation */ url: string; /** * Start index of the citation in the response text */ start_index?: number; /** * End index of the citation in the response text */ end_index?: number; } & Record<string, any>; //# sourceMappingURL=citation.d.ts.map