mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-31 11:13:02 +08:00
7 lines
91 B
TypeScript
7 lines
91 B
TypeScript
import { Id } from "./common";
|
|
|
|
export interface Chat {
|
|
id: string;
|
|
assistantId: Id;
|
|
}
|