correções e bugs

This commit is contained in:
luisfepsale
2025-10-24 12:05:27 -03:00
parent a85465e332
commit 9f75feb69a
4 changed files with 109 additions and 44 deletions
+2
View File
@@ -79,6 +79,7 @@ export interface ChatRecord {
folder_id: string | null;
created_at: string;
updated_at: string;
personalidade: string; // Personalidade/prompt do sistema salvo no banco
estabelecimento_id: number;
}
@@ -99,6 +100,7 @@ export interface MessageRecord {
role: 'user' | 'assistant';
content: string;
model_id: number;
model_name?: string; // Nome do modelo retornado pela API
has_attachments: number;
input_tokens: number;
output_tokens: number;