Files
History-client/src/interface/chatbot.ts
T
2026-05-09 11:55:45 +07:00

9 lines
151 B
TypeScript

export interface ChatbotPayload {
project_id?: string;
question: string;
}
export interface ChatbotResponse {
status: boolean;
data: string;
}