mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-08-02 22:58:43 +08:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
export default {
|
|
id: "migration-bot",
|
|
name: "Migration bot",
|
|
description: "A bot focused on database migration.",
|
|
avatar: "",
|
|
getPrompt: (input?: string): string => {
|
|
// TODO: update prompt.
|
|
return "";
|
|
},
|
|
};
|