/* eslint-disable */ /* tslint:disable */ // @ts-nocheck /* * --------------------------------------------------------------- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## * ## ## * ## AUTHOR: acacode ## * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## * --------------------------------------------------------------- */ import type { ErrorResponse } from './common' export interface CopilotMessage { content?: string; type?: string; } export interface CopilotInitConversationRespVO { ID?: string; } export interface CopilotSendMessageReqVO { conversation_id?: string; current_view?: string; messages?: CopilotMessage[]; params?: Record; } export interface CopilotSendMessageRespVO { ID?: string; Request?: string; }