feat: implement connection and database types

This commit is contained in:
steven
2023-03-22 16:32:12 +08:00
parent 90a6fec65c
commit 5dc3c05a2a
11 changed files with 58 additions and 17 deletions

View File

@ -1,5 +1,5 @@
import { first } from "lodash-es";
import { Id, User, UserRole } from "../types";
import { Id, User } from "../types";
// Assistant is a special user.
export const assistantList: User[] = [
@ -8,7 +8,6 @@ export const assistantList: User[] = [
name: "SQL Chat",
description: "🤖️ I'm an expert in SQL. I can answer your questions about databases and SQL.",
avatar: "",
role: UserRole.Assistant,
},
];