Add message seeding feature

This commit is contained in:
Charlie Laabs
2022-01-02 14:37:01 -06:00
parent a7699f1992
commit 914c355ad0
4 changed files with 40 additions and 22 deletions

View File

@@ -25,6 +25,14 @@ export const messageCommand = new SlashCommandBuilder()
.setName('debug')
.setDescription('Follow up the generated message with the detailed sources that inspired it.')
.setRequired(false)
)
.addStringOption((seed) =>
seed
.setName('seed')
.setDescription(
`A ${config.stateSize}-word phrase to attempt to start a generated sentence with.`
)
.setRequired(false)
);
/**