mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-08-02 14:01:59 +08:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
import { Id } from "./common";
|
|
|
|
export interface Chat {
|
|
id: string;
|
|
assistantId: Id;
|
|
isRequesting: boolean;
|
|
}
|