feat(*): first mvp
This commit is contained in:
@@ -8,7 +8,16 @@ router = Router()
|
||||
@router.startup()
|
||||
async def startup(bot: Bot) -> None:
|
||||
await bot.set_my_commands(
|
||||
[types.BotCommand(command="/start", description="Start bot")]
|
||||
[
|
||||
types.BotCommand(command="/start", description="Start bot"),
|
||||
types.BotCommand(command="/apikey", description="Set Gemini API key"),
|
||||
types.BotCommand(command="/new", description="Create new chat"),
|
||||
types.BotCommand(command="/clear", description="Clear chat history"),
|
||||
types.BotCommand(command="/prompt", description="Set system prompt"),
|
||||
types.BotCommand(command="/model", description="Change AI model"),
|
||||
types.BotCommand(command="/presets", description="Show prompt presets"),
|
||||
types.BotCommand(command="/preset", description="Apply a preset"),
|
||||
]
|
||||
)
|
||||
logger.info(f"[green]Started as[/] @{(await bot.me()).username}")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user