fix description for palm and bard

This commit is contained in:
derpystuff 2023-10-15 21:43:21 +02:00
parent 09cd1a7fa4
commit 0363a145ef
2 changed files with 2 additions and 5 deletions

View file

@ -21,10 +21,7 @@ module.exports = {
category: 'limited',
usage: 'bard <input>'
},
args: [
{ name: 'prompt', default: '', required: false, help: "The starting system prompt." },
{ name: 'temperature', default: 0.25, required: false, help: "Model temperature." },
],
args: [],
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.ATTACH_FILES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.READ_MESSAGE_HISTORY],
run: async (context, args) => {
if(!canUseLimitedTestCommands(context)) return;

View file

@ -16,7 +16,7 @@ module.exports = {
metadata: {
description: `${iconPill("generative_ai", "LIMITED TESTING")}\n\nTalk to PaLM 2.`,
description_short: 'Chat with PaLM 2.',
examples: ['bard How many otter species are there?'],
examples: ['palm How many otter species are there?'],
category: 'limited',
usage: 'palm <input> [-prompt <prompt override>]'
},