show response model name

This commit is contained in:
2023-03-30 13:39:19 +08:00
parent faac2303df
commit 07885c681c
3 changed files with 18 additions and 4 deletions

View File

@@ -4,6 +4,7 @@ export interface Message {
}
export interface ChunkMessage {
model: string;
choices: {
delta: { role: "assitant" | undefined; content: string | undefined };
}[];