feat: implement mysql connector

This commit is contained in:
steven
2023-03-23 13:36:07 +08:00
parent bad550bdea
commit eb978bd669
11 changed files with 297 additions and 8 deletions

View File

@ -6,7 +6,7 @@ export interface Database {
tableList: Table[];
}
interface Table {
export interface Table {
name: string;
// structure is a string of the table structure.
// It's mainly used for providing a chat context for the assistant.