feat: update chat view layout

This commit is contained in:
Steven
2023-03-19 00:42:35 +08:00
parent 19c3905e9e
commit 208c894db8
15 changed files with 210 additions and 117 deletions

View File

@ -2,5 +2,6 @@ import { Id } from "./common";
export interface Chat {
id: string;
userId: Id;
assistantId: Id;
isRequesting: boolean;
}