Spaces:
Running
license: openrail
title: Virtual Kimi - AI Companion App π
sdk: static
emoji: π»
colorFrom: indigo
colorTo: purple
pinned: true
short_description: AI girlfriend and companion with evolving personality
Virtual Kimi - AI Companion Application π
Web-based AI girlfriend and companion featuring adaptive personalities, intelligent memory systems, and immersive conversational experiences.
Overview
Virtual Kimi is an advanced virtual companion application that combines modern web technologies with state-of-the-art AI models to create meaningful, evolving relationships between users and AI girlfriend personalities.
- Lightweight: ~600 KB of pure JavaScript, HTML, and CSS (no frameworks)
- Local-first: All data is stored in your browser's IndexedDB (managed by Dexie.js)
- No tracking: The only external calls are to FontAwesome (for icons) and the OpenRouter API (for AI)
Built with vanilla JavaScript and modern web APIs, it offers a rich, responsive experience across devices.
π Support & Links
Website: virtualkimi.com
Email: ijohn@virtualkimi.com
X (Twitter): x.com/virtualkimi
GitHub: github.com/virtualkimi
HuggingFace: huggingface.co/VirtualKimi
YouTube: YouTube Channel
Support the project: ko-fi.com/virtualkimi If you like this project or want to help me (I'm currently without a permanent job), you can buy me a coffee or make a donation. Every bit helps keep Virtual Kimi alive and evolving!
ETH Wallet: 0x836C9D2e605f98Bc7144C62Bef837627b1a9C30c
Key Features
π€ Advanced AI Integration
Recommended models (IDs and short notes β updated Aug 2025):
- mistralai/mistral-small-3.2-24b-instruct β Mistral-small-3.2 (128k context, economical)
- qwen/qwen3-30b-a3b-instruct-2507 β Qwen3 30b (131k context)
- nousresearch/hermes-4-70b β Nous Hermes 4 70B (131k context)
- x-ai/grok-3-mini β Grok 3 mini (131k context)
- cohere/command-r-08-2024 β Cohere Command-R (128k context)
- qwen/qwen3-235b-a22b-2507 β Qwen3-235b (262k context)
- anthropic/claude-3-haiku β Claude 3 Haiku (large context)
- local/ollama β Local Model (Ollama, experimental, 4k context)
Notes: model IDs in the app are authoritative; pricing/context values are indicative and may change with providers.
π₯ Multiple AI Personalities
- Kimi: Cosmic dreamer and astrophysicist with ethereal sensibilities
- Bella: Nurturing botanist who sees people as plants needing care
- Rosa: Chaotic prankster thriving on controlled chaos
- Stella: Digital artist transforming reality through pixelated vision
Personality Trait Ranges
All personality traits operate on a 0-100 scale:
- Affection: Emotional warmth and attachment
- Playfulness: Fun-loving and spontaneous behavior
- Intelligence: Analytical and thoughtful responses
- Empathy: Understanding and emotional support
- Humor: Wit and lighthearted interactions
- Romance: Romantic and intimate expressions
π§ Intelligent Memory System
- Automatic extraction and categorization of conversation memories
- Seven memory categories: Personal, Preferences, Relationships, Activities, Goals, Experiences, Events
- Persistent memory across sessions with search and management capabilities
- Character-specific memory isolation
π« Dynamic Personality Evolution
- Six personality traits that evolve based on interactions:
- Affection, Playfulness, Intelligence, Empathy, Humor, Romance
- Real-time trait adjustments based on conversation tone and content
- Visual personality indicators and progression tracking
- Intelligent model selection and switching
- Real-time emotion detection and analysis
- Contextually-aware responses
π¬ Emotion-Driven Visual Experience
- Real-time video responses matching detected emotions
- Smooth transitions between emotional states
- Character-specific visual libraries with ~240 video clips (approx. 60 per main character)
- Context-aware video selection system
π¨ Customizable Interface
- Five professionally designed themes
- Adjustable interface transparency
- Responsive design optimized for desktop, tablet, and mobile
- Accessibility features and keyboard navigation
π Multilingual Support
- Full localization in 7 languages: English, French, Spanish, German, Italian, Japanese, Chinese
- Automatic language detection from user input
- Culturally-aware responses and emotion keywords
π Extensible Plugin System
- Theme plugins for visual customization (currently, only the color theme plugin is functional)
- Voice plugins for speech synthesis options (planned)
- Behavior plugins for personality modifications (planned)
- Secure plugin loading with validation
π‘οΈ Security & Privacy
- Input validation and sanitization
- Secure API key handling
- Local data storage with IndexedDB
- No server dependencies for core functionality
ποΈ Technical Architecture
π§© Core Technologies
- Frontend: Vanilla JavaScript (ES6+), HTML5, CSS3
- Database: IndexedDB with Dexie.js
- AI Integration: OpenRouter (default), OpenAI-compatible, Cohere, Anthropic, Groq, Together, or local Ollama
- Speech: Web Speech API
- Audio: Web Audio API
β¨ Inspiration & Assets
This project was originally inspired by the JackyWine GitHub repository. @Jackywine on X (Twitter)
The four main characters are visually based on images from four creators on X (Twitter):
- @JulyFox33 (Kimi)
- @BelisariaNew (Bella)
- @JuliAIkiko (Rosa and Stella)
All character videos were generated using the image-to-video AI from Kling.ai, specifically with the Kling v2.1 model.
Get 50% bonus Credits in your first month with this code referral 7BR9GT2WQ6JF - link: https://klingai.com
Project Structure (current)
Top-level files and main modules:
- index.html β Main application entry
- virtual-kimi (static assets & landing): virtual-kimi*.html
- kimi-js/
- kimi-script.js β App initialization & orchestration
- kimi-database.js β IndexedDB persistence (Dexie)
- kimi-config.js β Runtime configuration
- kimi-security.js β Security utilities
- kimi-llm-manager.js β LLM integration and model list
- kimi-emotion-system.js β Emotion analysis
- kimi-memory-system.js β Memory extraction & storage
- kimi-memory-ui.js β Memory management UI
- kimi-appearance.js, kimi-voices.js, kimi-utils.js, kimi-module.js, etc.
- kimi-css/ β styles and themes
- kimi-plugins/ β local plugins (sample-theme, sample-behavior, sample-voice)
- kimi-locale/ β translations and i18n files
- dexie.min.js β local DB helper
Data Flow
- Input Processing: User input β Security validation β Language detection
- AI Analysis: Emotion detection β Memory extraction β LLM processing
- Response Generation: Personality-aware response β Emotion mapping β Visual selection
- Memory Update: Trait evolution β Memory storage β UI synchronization
Installation & Setup
Prerequisites
- Modern web browser (Chrome, Edge or recent Firefox recommended). The app is plain HTML/CSS/JS and runs locally in a browser β no build step is required.
- (Optional) OpenRouter API key or another compatible provider API key if you want remote LLM access. The app can run without a key using local-only features, but AI responses will be limited.
- HTTPS is required for microphone access and some browser TTS features. For full voice/microphone features, open the app via a local server (see Quick Start). If you only open
index.html
directly, most features still work but microphone may be blocked by the browser. - Dexie.js is included for IndexedDB persistence (no installation required; file
dexie.min.js
is bundled).
Quick Start
Clone the repository
git clone https://github.com/virtualkimi/virtual-kimi.git cd virtual-kimi
Open the application
- Open
index.html
in your web browser - Or serve via local web server for optimal performance:
python -m http.server 8000 # Navigate to http://localhost:8000
- Open
Configure API access
- Open Settings β AI & Models
- Provider: choose the LLM provider to use. Supported options in the app include
openrouter
(recommended),openai
/OpenAI-compatible endpoints, andollama
(local). The selected provider is saved in the app preferences. - API key: paste your provider API key into the API Key field. Keys are saved locally in your browser's IndexedDB (preferences) so they never leave your machine except when the app sends requests to the selected provider.
- Base URL: if you use a nonβdefault provider or an OpenAI-compatible endpoint, set the provider base URL (Settings β AI & Models β Base URL). This overrides the built-in default endpoints.
- Model selection: choose a model ID from the list. The app's authoritative model list is defined in
kimi-js/kimi-llm-manager.js
. If the provider does not support the selected model, the app will attempt a best-match fallback or show an error. - Test API key: use the app's built-in test function (Settings β Test API) to validate your key; this performs a minimal request and reports success or the provider error message.
- Local (Ollama) usage: to use a local model with
ollama
, run your local Ollama-compatible server (the app useshttp://localhost:11434/api/chat
). Select providerollama
and set model ID accordingly. Local models are experimental and work only if the local server is running. - No key behavior: the app runs without an API key for local UI features and stored data, but remote LLM responses require a valid provider/key. If no key is configured the app will return friendly fallback messages for AI features.
Troubleshooting notes:
- If you see HTTP 401: verify the API key for the selected provider.
- If you see HTTP 429 or rate-limit errors: wait a moment or choose a different model/provider account.
- If the model is reported as unavailable (422-like errors): verify the model ID and, if needed, refresh the remote model list in Settings.
- For OpenRouter-specific issues: check the Base URL is
https://openrouter.ai/api/v1/chat/completions
(default) unless you use a custom endpoint.
Customize your experience
- Choose your language and preferred voice
- Choose a character in Personality tab
- Enable memory system in Data tab
- Adjust themes and UI opacity in Appearance tab
Production Deployment
For production deployment, ensure:
- HTTPS is enabled (required for microphone access)
- Gzip compression for assets
- Proper cache headers
- CSP headers for enhanced security
βοΈ Configuration
API Integration
The application supports multiple AI providers; choose and configure your provider in Settings β AI & Models.
- Mistral models
- Nous Hermes models
- Qwen3 models
- xAI models
- Open-source alternatives
Memory System Configuration
// Memory categories can be customized
const memoryCategories = [
"personal", // Personal information
"preferences", // Likes and dislikes
"relationships", // People and connections
"activities", // Hobbies and activities
"goals", // Aspirations and plans
"experiences", // Past events
"important" // Significant moments
];
π οΈ Development
Project Structure
<repo root>
βββ index.html
βββ README.md
βββ LICENSE.md
βββ package.json
βββ kimi-js/ # core JS modules (kimi-*.js)
βββ kimi-locale/ # translations (en.json, fr.json, ...)
βββ kimi-plugins/ # plugin examples
βββ kimi-videos/ # character video clips
βββ kimi-icons/ # image assets and favicons
βββ dexie.min.js # IndexedDB helper
Adding New Features
Creating a New Plugin
// manifest.json
{
"name": "Custom Theme",
"version": "1.0.0",
"type": "theme",
"style": "theme.css",
"main": "theme.js",
"enabled": true
}
Note: As of version 1.0, only the color theme plugin is fully functional. Voice and behavior plugins are planned for future releases. See
kimi-plugins/sample-theme/
for a working example.
Extending Memory Categories
// Add to kimi-memory-system.js
const customCategory = {
name: "custom",
icon: "fas fa-star",
keywords: ["keyword1", "keyword2"],
confidence: 0.7
};
Health Check System
The application includes a comprehensive health check system:
// Run health check
const healthCheck = new KimiHealthCheck();
const report = await healthCheck.runAllChecks();
console.log(report.status); // 'HEALTHY' or 'NEEDS_ATTENTION'
Browser Compatibility
Browser | Voice Recognition | Full Features | Notes |
---|---|---|---|
Chrome 90+ | β | β | Recommended |
Edge 90+ | β | β | Optimal voice performance |
Firefox 88+ | β οΈ | β | Limited voice support |
Safari 14+ | β οΈ | β | iOS limitations |
Performance
Optimization Features
- Lazy loading of non-critical modules
- Efficient batch database operations
- Debounced UI interactions
- Memory management with cleanup
- Optimized video preloading
Resource Usage
- Memory footprint: ~15-30MB active usage
- Storage: Scales with conversation history
- Network: API calls only, no tracking
- CPU: Minimal background processing
Privacy & Security
Data Handling
- All data stored locally in browser
- No telemetry or analytics
- API keys in your local storage
- User content never sent to external servers (except chosen AI provider)
Security Measures
- Input validation and sanitization
- XSS protection
- Safe plugin loading
- Secure API communication
Troubleshooting
Common Issues
- Microphone not working: Ensure HTTPS and browser permissions
- API errors / provider issues: Verify the API key and selected provider for the chosen model. This app supports multiple providers (OpenRouter, OpenAI-compatible endpoints, Groq, Together, Cohere, Anthropic, local/Ollama, etc.). Make sure the provider-specific base URL, model ID and API key are correctly configured in Settings β AI & Models.
- Text-to-Speech (TTS) voices: The app uses the browser Web Speech API for TTS. For best voice support, use modern Chromium-based browsers (Edge or Chrome) which generally provide better built-in voices and compatibility. If voices are missing or sound low quality, try Edge/Chrome or install additional TTS engines on your system.
- Performance issues: Clear browser cache, check available memory
- Memory system not learning: Ensure system is enabled in Data tab
Contributing
We welcome contributions! Please see our contributing guidelines:
- Fork the repository
- Create a feature branch
- Make your changes with appropriate tests
- Submit a pull request with detailed description
Development Guidelines
- Follow existing code style and patterns
- Add comments for complex functionality
- Test across multiple browsers
- Update documentation for new features
π TODO / Roadmap (current priorities)
- Full support for local models (Ollama integration β currently experimental)
- Voice plugin system (custom voices, TTS engines) β planned
- Behavior plugin system (custom AI behaviors) β planned
- Improve advanced memory management UI and ranked memory snapshot features (in-progress)
- More character personalities and backgrounds
- In-app onboarding and help system
- Better mobile UI/UX and accessibility improvements
- More granular privacy controls and explicit user consent flows
- Automated testing and CI/CD pipeline (unit + basic UI tests)
- Performance profiling and optimization for large conversation histories
- Documentation updates to reflect implemented features (models, API handling, plugin validation)
π License
This project is distributed under a custom license. Any commercial use, resale, or monetization of this application or its derivatives is strictly prohibited without the explicit written consent of the author.
See the LICENSE file for details.
Virtual Kimi - Creating meaningful connections between humans and AI, one conversation at a time.
@2025 Virtual Kimi - Created with π by Jean & Kimi
"Love is the most powerful code" π