Add multi-user features: i18n, payments, multi-model AI, focus areas
Replace single report type with composable analysis: depth levels (basic/standard/full) + focus area multi-select (psychology, business, marketing, content, audience, sentiment). Multi-step inline keyboard flow guides users through selection. - i18n: English + Russian, auto-detect from Telegram, /lang override - AI providers: Anthropic + OpenRouter via AIClient abstraction - Telegram Stars payments with per-depth pricing and free trial - SQLite (aiosqlite) for users, analyses, payments tracking - User middleware for auto-registration and language detection - Report persistence: save .md locally, offer file download - New commands: /features, /prices, /lang - Composable prompt system: depth modifiers + focus area fragments
This commit is contained in:
parent
8a84145e15
commit
c30b7e4675
27 changed files with 1155 additions and 280 deletions
19
bot/handlers/prices.py
Normal file
19
bot/handlers/prices.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
from aiogram import Router
|
||||
from aiogram.filters import Command
|
||||
from aiogram.types import Message
|
||||
|
||||
from bot.config import settings
|
||||
from bot.i18n import Lang, t
|
||||
|
||||
router = Router()
|
||||
|
||||
|
||||
@router.message(Command("prices"))
|
||||
async def cmd_prices(message: Message, lang: Lang = Lang.EN, **_: object) -> None:
|
||||
text = t(
|
||||
"prices", lang,
|
||||
basic=settings.price_basic,
|
||||
standard=settings.price_standard,
|
||||
full=settings.price_full,
|
||||
)
|
||||
await message.answer(text, parse_mode="HTML")
|
||||
Loading…
Add table
Add a link
Reference in a new issue