# 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. Mira 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** — Mira 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 Mira works through complex problems step by step before answering. Available on Pro and Max 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** — Mira can set reminders, sync with Google Calendar and Yandex Calendar, and send notifications via Telegram. ## Pricing All prices are in Russian rubles (RUB). Subscriptions are monthly, billed via YooKassa or Russian bank cards. | Plan | Price | Messages/day | Models | Notable features | |------------|------------|--------------|----------------------|------------------------------------------| | Free | 0 ₽ | 1,000 | Mira Fast | Web search, file uploads | | Pro | 199 ₽/mo | 5,000 | Mira + Mira Pro | Thinking mode, voice I/O, priority speed | | Max | 990 ₽/mo | Unlimited | All (incl. Mira Max) | Fastest responses, longest context | | Enterprise | Custom | Custom | Custom deployment | 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 Mira 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): Mira CLI and desktop apps ## About vMira is developed by Spotbo (spotbo.com). The service is designed for the Russian market and is compliant with Russian data regulations (152-ФЗ). 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