/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { AssistantMessagePart } from './AssistantMessagePart'; /** * * @export * @interface AssistantMessageBase */ export interface AssistantMessageBase { /** * * @type {string} * @memberof AssistantMessageBase */ 'role': AssistantMessageBaseRoleEnum; /** * * @type {Array} * @memberof AssistantMessageBase */ 'parts'?: Array | null; /** * * @type {string} * @memberof AssistantMessageBase */ 'content'?: string | null; } /** * @export */ export declare const AssistantMessageBaseRoleEnum: { readonly User: "user"; readonly Assistant: "assistant"; }; export type AssistantMessageBaseRoleEnum = typeof AssistantMessageBaseRoleEnum[keyof typeof AssistantMessageBaseRoleEnum]; /** * Check if a given object implements the AssistantMessageBase interface. */ export declare function instanceOfAssistantMessageBase(value: object): value is AssistantMessageBase; export declare function AssistantMessageBaseFromJSON(json: any): AssistantMessageBase; export declare function AssistantMessageBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssistantMessageBase; export declare function AssistantMessageBaseToJSON(json: any): AssistantMessageBase; export declare function AssistantMessageBaseToJSONTyped(value?: AssistantMessageBase | null, ignoreDiscriminator?: boolean): any;