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