UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

11 lines 518 B
import { AiResponse } from './aiResponse'; import { AiCitation } from './aiCitation'; import { SerializedData } from '../serialization/json'; export type AiResponseFull = AiResponse & { /** * The citations of the LLM's answer reference. */ readonly citations?: readonly AiCitation[]; }; export declare function serializeAiResponseFull(val: AiResponseFull): SerializedData; export declare function deserializeAiResponseFull(val: SerializedData): AiResponseFull; //# sourceMappingURL=aiResponseFull.d.ts.map