plane/web/types/ai.d.ts
sriram veeraghanta 3ce0aa8ebc restructring
2023-08-22 13:00:23 +05:30

10 lines
219 B
TypeScript

import { IProjectLite, IWorkspaceLite } from "types";
export interface IGptResponse {
response: string;
response_html: string;
count: number;
project_detail: IProjectLite;
workspace_detail: IWorkspaceLite;
}