Files
TeleDiffusionBot/bot/handlers/help_command/help_strings.py
2023-05-06 15:06:56 +03:00

25 lines
1.5 KiB
Python

help_data = {
'generate': 'Generate picture using configuration set by user. You can pass prompt also in command arguments or '
'use it without arguments to generate picture with prompt, that was used for last generation',
'imginfo': 'Get information about image, that was generated using this bot',
'current': 'Get your current prompt',
'setprompt': 'Set default prompt for images, will be overwritten if you specify prompt in generate command',
'setnegative': 'Set negative prompt',
'setsize': 'Set size for image (in hxw format)',
'setwidth': 'Set width for image',
'setheight': 'Set height for image',
'setsteps': 'Set sampling steps number',
'setsampler': 'Set StableDiffusion sampler',
'setscale': 'Set CFG Scale (prompt stringency)',
'setfaces': 'Set restore faces mode',
'status': 'Ping API endpoint host',
'config': 'Edit config using inline buttons',
'setmodel': '(global) Sets StableDiffusion model for all users. Can be used only once an hour',
'setendpoint': '(admin) Set StableDiffusion API endpoint',
'addadmin': '(admin) Add new admin - reply to message or type user ID',
'rmadmin': '(admin) Remove admin - reply to message or type user ID',
'addwhitelist': '(admin) Add to whitelist - reply to message or type user ID',
'rmwhitelist': '(admin) Remove from whitelist - reply to message or type user ID',
'getwhitelist': '(admin) Get current whitelist and check if it is enabled'
}