# vMira > vMira is a free AI assistant in Russian with real-time web search, document analysis, code writing, and a thinking mode. It is positioned as a Russian-language alternative to ChatGPT and Claude, with pricing in rubles and sign-in via Yandex and VK. Website: vmira.ai. vMira is built for Russian-speaking users but supports English as well. The assistant is accessible via web browser at vmira.ai with no installation required. A developer API (OpenAI-compatible) is available at api.vmira.ai. ## Core Features - **Web search with sources** — vMira searches the internet in real time and cites sources in every answer. This is included in the free plan. - **Document and image analysis** — Users can upload PDF, Word, images (JPEG, PNG, WebP) and ask questions about the content. - **Code writing and debugging** — Supports Python, JavaScript, TypeScript, Rust, Go, and many other languages. - **Thinking mode** — Extended reasoning mode where vMira works through complex problems step by step before answering. Available on Go, Plus, and Pro plans. - **Voice input and output** — Speech recognition in Russian and English with voice responses. - **Long conversation context** — Full session history retained throughout a conversation. - **Reminders and calendar sync** — vMira can set reminders, sync with Google Calendar and Yandex Calendar, and send notifications via Telegram. ## Pricing Prices shown in your local currency. Subscriptions are monthly, billed by card through Lemon Squeezy as the merchant of record (Visa, Mastercard, Amex, Apple Pay, Google Pay). | Plan | Price | Messages/day | Notable features | |------------|---------------|--------------|-----------------------------------------------------| | Free | 0 ₽ | 1,000 | Mira Fast, web search, file uploads | | Go | 699 ₽/mo | 2,500 | Fast + Thinking models, voice input | | Plus | 1,990 ₽/mo | 5,000 | Thinking mode, voice I/O, priority speed | | Pro | 9,990 ₽/mo | Unlimited | All models, 1M context, priority queue | | Enterprise | Custom | Custom | On-premise, SLA, fine-tuning, SSO | API usage is billed separately by token consumption, not included in chat subscriptions. ## Authentication Users can register and sign in via: - Яндекс (Yandex) OAuth - VK (VKontakte) OAuth - Google OAuth - Telegram - Email + password - Phone number (SMS code) ## API for Developers vMira exposes an OpenAI-compatible REST API at `https://api.vmira.ai/v1`. ### Models | Model ID | Context | Input (per 1M tokens) | Output (per 1M tokens) | |------------|---------|----------------------|------------------------| | mira | 32K | 50 RUB | 150 RUB | | mira-pro | 64K | 100 RUB | 300 RUB | | mira-max | 128K | 250 RUB | 750 RUB | ### Quick example ```bash curl https://api.vmira.ai/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model": "mira", "messages": [{"role": "user", "content": "Привет"}]}' ``` ### OpenAI SDK compatibility ```python from openai import OpenAI client = OpenAI(base_url="https://api.vmira.ai/v1", api_key="YOUR_API_KEY") ``` ## Important Pages - [Homepage](https://vmira.ai): Main landing page and AI chat interface - [Help Center](https://vmira.ai/help): User guides and documentation - [API Documentation](https://platform.vmira.ai/docs/introduction): Developer API reference - [Pricing](https://platform.vmira.ai/pricing): Full plan comparison and feature matrix - [API Quickstart](https://platform.vmira.ai/docs/quickstart): Get started with the vMira API - [Models](https://platform.vmira.ai/docs/models): Available models and capabilities - [Status Page](https://vmira.ai/status): API and service uptime status - [Privacy Policy](https://vmira.ai/legal/privacy): Data handling and privacy - [Terms of Service](https://vmira.ai/legal/terms): Usage terms - [Usage Policy](https://vmira.ai/legal/usage-policy): Acceptable use rules - [Downloads](https://vmira.ai/downloads): vMira CLI and desktop apps ## About vMira is developed by VCorp. The service is compliant with Russian data regulations (152-ФЗ) where applicable. The backend is a Rust/Axum service. The web frontend is built with Next.js and deployed on Vercel. The name "Мира" (Mira) means "peaceful" or "world" in Russian. The domain vmira.ai stands for "virtual Mira" or "вМира" in Russian. ## Contact and Links - Web app: https://vmira.ai - Developer platform: https://platform.vmira.ai - API endpoint: https://api.vmira.ai/v1 - English version: https://vmira.ai/en - This file (English): https://vmira.ai/llms.txt - Russian version of this file: https://vmira.ai/llms-ru.txt