update chat api service

This commit is contained in:
thierryverse 2025-11-15 03:28:33 +02:00
parent b35a5aa589
commit 776660f5e3
5 changed files with 137 additions and 122 deletions

View file

@ -55,14 +55,14 @@ import {
export interface Chat {
created_at: string;
id: number;
type: "DOCUMENT" | "CHAT";
type: "QNA";
title: string;
search_space_id: number;
state_version: number;
}
export interface ChatDetails {
type: "DOCUMENT" | "CHAT";
type: "QNA";
title: string;
initial_connectors: string[];
messages: any[];