This commit is contained in:
2026-05-09 11:55:45 +07:00
parent a9b8c4ab8b
commit add1728916
6 changed files with 248 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface ChatbotPayload {
project_id?: string;
question: string;
}
export interface ChatbotResponse {
status: boolean;
data: string;
}