some improvements for prompt making

This commit is contained in:
2026-01-28 17:59:53 +03:00
parent d1e1245ece
commit 12d9591109
5 changed files with 47 additions and 46 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
export type StoredMessage = {
chatId: number;
id: number;
replyToMessageId?: number | null;
replyToMessageId?: number;
fromId: number;
text?: string;
date: number;
photoMaxSizeFilePath?: string | null;
photoMaxSizeFilePath?: string[];
};