improve user guide

This commit is contained in:
josc146
2023-11-09 22:07:01 +08:00
parent 4f0558ae34
commit 0a4876a564
6 changed files with 34 additions and 20 deletions

View File

@@ -26,4 +26,9 @@ export type Role = 'assistant' | 'user' | 'system';
export type ConversationMessage = {
role: Role;
content: string;
}
export type Attachment = {
name: string;
size: number;
content: string;
}