extend command description

This commit is contained in:
Gerardo Parrello
2023-03-19 21:20:52 +01:00
parent 7d62305444
commit a1e854a279

View File

@@ -26,7 +26,7 @@ class ChatGPT3TelegramBot:
self.openai = openai
self.commands = [
BotCommand(command='help', description='Show help message'),
BotCommand(command='reset', description='Reset the conversation'),
BotCommand(command='reset', description='Reset the conversation. Optionally pass high-level instructions for the conversation (e.g. /reset You are a helpful assistant)'),
BotCommand(command='image', description='Generate image from prompt (e.g. /image cat)'),
BotCommand(command='stats', description='Get your current usage statistics')
]