COGNITIVE USERBOT ENGINE / BEHAVIORAL DIGITAL CLONE
The world's first SaaS platform that designs fully autonomous, conversational digital clones on Telegram. Integrating Amazon Bedrock and semantic RAG on Qdrant, MIMIC acts on your behalf, learning from your chat history to perfectly match your phrasing, scheduling, typos, and personality.
Break trust in 5 seconds
Indistinguishable from actual humans
MIMIC is designed as a highly scalable, secure enterprise SaaS. Each user session is sandboxed in independent ECS containers, securing complete privacy and bypassing Telegram spam detections.
Every active session runs inside its own isolated micro-container on AWS Fargate. Secrets (StringSessions) are stored encrypted in a PostgreSQL database using AES-GCM-256 with custom keys.
MIMIC communicates through AWS Bedrock APIs to orchestrate Claude 3.5. Native Prompt Caching is utilized, preserving up to 90% of chat contexts and cutting operational token expenses by 80%.
Training rules (Custom Rules) are vectorized using e5-small models and saved to AWS Qdrant. Cosine similarities above 0.78 inject contextual snippets as dynamic prompt guidelines.
Actual people don't type at a flat speed of 1000 characters per minute. MIMIC Humanizer accurately computes variable entry pauses based on content length.
*hello after a 4s pause.# Calculate humanized typing delay
def calculate_typing_delay(text: str, cpm: int = 180) -> float:
char_count = len(text)
base_time = (char_count / cpm) * 60
jitter = random.uniform(-0.15, 0.25) * base_time
total_delay = base_time + jitter
return max(1.2, total_delay)
# Typo injection model
typo_chance = 0.02
if random.random() < typo_chance:
text = inject_keyboard_typo(text)
Digital clones follow your active time zones and schedules. You maintain complete control over active intervals.
Absolute safety and moderation control. The system parses chat flows for sensitive contexts, escalating key messages for manual review.
Alex: Hey, let's meet tomorrow at 7 PM for dinner? We can discuss the investment details.
Risk: offline_meeting_request (score: 0.94)
Instead of relying on basic context files, MIMIC stores a dynamic facts database for every conversation partner, ensuring factual consistency.
Interact with MIMIC in real-time. Text Lilya (our demo clone) directly or choose from the suggested prompt chips. The sidebar panel displays **live cognitive telemetry logs** generated by the active engine.
Every active digital clone is highly connection-bound to Telegram API hooks. MIMIC's stateless, Docker-based userbot architecture allows us to dynamically scale up to 10,000+ simultaneous active sessions on AWS ECS Fargate clusters with highly predictable RAM footprints.
Accessing Claude 3.5 Sonnet and Haiku via Amazon Bedrock ensures production-level reliability, zero data retention security policies, and optimized latency by leveraging AWS private networks.
MIMIC's B2B SaaS model presents a highly forecastable and high-margin B2B AWS resource consumer. As user volumes grow, our consumption of Bedrock, Qdrant on ECS, RDS, and ElastiCache scales linearly, securing perfect utility of AWS startup grant programs.