Everything you need to know about MySlime AI — features, API reference, and guides.
Get up and running in 30 seconds
Quick, Code, and Advanced models
Create images with AI (Enterprise)
Build with the MySlime API
MySlime is an AI chat platform built by Alec and Leonardo. It offers fast, intelligent conversations with multiple AI models, image generation, web search, memory, a calendar, and more.
MySlime is available at myslime.ai — create a free account to get started.
1. Go to myslime.ai and create an account with your email.
2. Verify your email by clicking the link we send you.
3. Choose a model — Quick for fast answers, Code for programming, or Advanced for deep reasoning.
4. Start chatting! Type a message and hit send.
MySlime offers three AI models, each optimized for different tasks:
| Model | Best For | Speed | Availability |
|---|---|---|---|
| Quick | Fast answers, casual chat, simple questions | ⚡ Fastest | All Plans |
| Code | Programming, debugging, code generation | ⚡ Fast | Standard+ |
| Advanced | Deep analysis, complex reasoning, research | 🐢 Slower | Standard+ |
Switch models anytime using the selector in the top bar.
MySlime supports multi-chat — create as many conversations as you need. Each chat keeps its own history and syncs across devices.
Multi-chat: Create new chats with the "+ New Chat" button. Switch between them in the sidebar.
File attachments: Click the 📎 button or drag & drop files into the chat. Supports images, text files, code files, and more (up to 10MB).
Screenshot reading: Attach a screenshot and MySlime will read and describe what's in it.
Voice input: Click the microphone button to dictate your message.
Voice output: Toggle the speaker button to have MySlime read responses aloud.
MySlime can generate images from text descriptions using AI.
Simply ask MySlime to create an image:
Generate an image of a sunset over mountains
Create a logo for a coffee shop
Draw a futuristic city at night
After generating an image, you can ask for modifications:
Make it darker
Add some clouds
Try a different color scheme
Toggle the 🌐 button in the input bar to enable web search. When enabled, MySlime searches the web for real-time information before responding.
Great for current events, fact-checking, and up-to-date information that the AI might not know.
MySlime remembers things you tell it — your name, preferences, hobbies, and more. Memories persist across all your chats.
Just tell MySlime things about yourself naturally. It will automatically remember important facts.
"My name is Alex"
"I prefer Python for coding"
"I'm working on a startup called FoodApp"
Click the 🧠 button in the top bar to view, and delete individual memories. You can also clear all memories at once.
Maximum of 50 memories per account.
MySlime has a built-in calendar. You can add events manually through the calendar panel, or ask the AI to add them for you.
"Add a meeting with John tomorrow at 3pm"
"Schedule a dentist appointment on June 15"
"What's on my calendar this week?"
Click the 📅 button in the top bar to open the calendar panel.
When you ask MySlime to create a website, app, game, calculator, or any interactive content, it renders as a live preview in SlimeBoard.
SlimeBoard appears as a split panel on the right side of your screen. You can pop it out into a separate window for more space.
MySlime offers 12 themes to customize your experience:
| Theme | Type | Availability |
|---|---|---|
| 🌑 Dark | Dark | Free |
| ☀️ Light | Light | Free |
| 🌌 Midnight Blue | Dark | Standard |
| 🌲 Forest Green | Dark | Standard |
| 🌸 Rose Gold | Light | Standard |
| ⚡ Neon Cyber | Dark | Enterprise |
| 🌅 Sunset Blaze | Dark | Enterprise |
| 🌊 Deep Ocean | Dark | Enterprise |
| 🎆 Aurora | Dark | Enterprise |
Change themes from the dropdown in the sidebar footer.
Customize how MySlime talks to you. Choose from preset personalities or create your own:
| Personality | Style |
|---|---|
| 😊 Friendly & Casual | Warm, conversational, easy to talk to |
| 💼 Professional | Clean, polished, business-ready |
| 😏 Funny & Sarcastic | Witty humor with helpful answers |
| 📚 Teacher / Tutor | Patient, educational, step-by-step |
| 🔥 Hype Beast | Gen Z slang, no cap fr fr |
| ✨ Custom | Write your own personality prompt |
Open Settings (⚙️) to change your personality.
Share any conversation with a public link. Click the share button (🔗) in the top bar to generate a shareable URL. Anyone with the link can view the conversation.
The MySlime API lets you integrate AI chat into your own applications. Send messages and receive AI responses programmatically.
Base URL: https://myslime.ai/api/v1
All API requests require a Bearer token. Generate your API key in Settings → API Key.
Authorization: Bearer msk_your_api_key_here
Send a message and receive an AI response.
{
"message": "Hello, how are you?",
"model": "quick", // quick | code | advanced
"system": "Be helpful", // optional system prompt
"history": [ // optional conversation history
{ "role": "user", "text": "Hi" },
{ "role": "assistant", "text": "Hello!" }
]
}
{
"reply": "I'm doing great! How can I help?",
"model": "gemini-2.5-flash",
"usage": { "remaining": 49 }
}
curl -X POST https://myslime.ai/api/v1/chat \
-H "Authorization: Bearer msk_your_key" \
-H "Content-Type: application/json" \
-d '{"message": "What is 2+2?", "model": "quick"}'
const res = await fetch('https://myslime.ai/api/v1/chat', {
method: 'POST',
headers: {
'Authorization': 'Bearer msk_your_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: 'Explain quantum computing',
model: 'advanced'
})
});
const data = await res.json();
console.log(data.reply);
Chat with MySlime from your terminal:
curl -sL https://myslime.ai/cli.js -o myslime.js
export MYSLIME_URL="https://myslime.ai"
export MYSLIME_KEY="msk_your_key"
node myslime.js
| Plan | Price | Messages | Features |
|---|---|---|---|
| Free | $0/mo | 5/week | Quick model, memory, calendar, 2 themes |
| Standard | $5/mo | 25/day | All models, web search, 5 themes, priority support |
| Enterprise | $10–40/mo | 50–200/day | All models, API, image gen, all themes, team workspace |
To upgrade, click "Upgrade Plan" in the sidebar or email [email protected].
| Plan | Messages | API Requests | File Upload |
|---|---|---|---|
| Free | 5/week | — | 10MB |
| Standard | 25/day | — | 10MB |
| Enterprise 10 | 50/day | 50/day | 10MB |
| Enterprise 20 | 100/day | 100/day | 10MB |
| Enterprise 30 | 150/day | 150/day | 10MB |
| Enterprise 40 | 200/day | 200/day | 10MB |
Message limits reset daily at midnight Pacific Time.
MySlime supports both voice input (speech-to-text) and voice output (text-to-speech).
Click the microphone button in the input bar to start dictating. MySlime uses your browser's built-in speech recognition to convert your voice to text. Supported in Chrome, Edge, and Safari.
Click the speaker button to toggle voice output on or off. When enabled, MySlime will read its responses aloud using your browser's text-to-speech engine. The voice is selected automatically based on your browser's available voices.
Voice output will skip code blocks and special formatting to keep the speech natural.
You can attach files to your messages in two ways:
Click to attach: Click the 📎 paperclip button in the input bar and select a file from your device.
Drag and drop: Drag any file directly onto the chat area. A drop overlay will appear — release to attach.
| Type | Extensions | Max Size |
|---|---|---|
| Images | .png, .jpg, .gif, .webp | 10MB |
| Text files | .txt, .csv, .json | 10MB |
| Code files | .js, .py, .html, .css | 10MB |
| Documents | 10MB |
When you attach an image, MySlime can see and describe what's in it — great for screenshots, diagrams, photos, and more.
MySlime can read and understand screenshots. Simply attach a screenshot and ask about it:
"What does this error mean?" + screenshot
"Read the text in this image"
"What app is this?"
"Summarize what's on this screen"
The AI will analyze the image and provide a detailed description or answer based on what it sees.
MySlime can look up real-time stock data and provide AI-powered analysis. Just mention a stock ticker:
"$AAPL"
"Analyze TSLA stock"
"What's the price of MSFT?"
You'll get a price chart, current price, daily change, and an AI analysis with a buy/hold/sell recommendation.
Click "+ New Chat" in the sidebar to start a fresh conversation. Each chat has its own history, model selection, and context.
Hover over a chat in the sidebar and click the pencil icon to rename it. Press Enter to save or Escape to cancel.
Hover over a chat and click the trash icon to delete it. This action cannot be undone.
Your chats are synced to the server, so you can access them from any device. Just sign in with the same account.
Maximum of 100 chats per account. Oldest chats are automatically removed when the limit is reached.
Click your avatar in the sidebar footer to open your profile. You can customize:
Display name: Set a name that appears on your avatar instead of your email initial.
Avatar color: Choose a custom color for your avatar across the app.
MySlime uses advanced AI models to generate responses, but it's important to understand their limitations.
Like all AI systems, MySlime can sometimes:
| Issue | Description | What to do |
|---|---|---|
| Hallucinations | The AI may generate information that sounds correct but is completely made up — fake statistics, non-existent sources, or fabricated facts. | Always verify important facts independently. Don't rely on AI for medical, legal, or financial decisions. |
| Outdated info | The AI's training data has a cutoff date. It may not know about very recent events. | Enable web search for current information. |
| Math errors | While generally good at math, the AI can occasionally make calculation mistakes, especially with complex problems. | Double-check important calculations with a calculator. |
| Code bugs | Generated code may contain bugs, security issues, or use outdated libraries. | Always review and test generated code before using it in production. |
| Bias | AI models can reflect biases present in their training data. | Consider multiple perspectives on sensitive topics. |
If you need current, factual information, enable the web search toggle (🌐) in the input bar. This lets MySlime search the internet for real-time data instead of relying solely on its training data.
You can get better results by:
Being specific: "Write a Python function that sorts a list of dictionaries by the 'age' key" is better than "write some code".
Providing context: The more context you give, the better the response. Share relevant background information.
Using the right model: Use Code for programming tasks and Advanced for complex reasoning. Quick is great for simple questions but may oversimplify complex topics.
Asking for sources: If the AI makes a claim, ask it to provide sources or evidence. If it can't, the information might not be reliable.
Iterating: Don't settle for the first response. Ask follow-up questions, request corrections, or ask the AI to reconsider its answer.
Your privacy matters. Here's how MySlime handles your data:
Conversations: Stored securely on our servers. Only you can access your chats.
Memories: Facts MySlime remembers about you are stored per-account and can be deleted at any time from the memory panel.
Calendar: Events are stored on our servers and are only accessible by you.
Passwords: Stored as bcrypt hashes. We never store or see your plain-text password.
Images: Generated images are stored on our servers and accessible via their unique URL.
No selling data: We never sell your data to third parties.
To delete your data, contact us at [email protected].
Check your message count — you may have used all your messages for the day/week. Upgrade your plan or wait for the reset.
This usually means the AI service is temporarily unavailable. Wait a moment and try again. If the issue persists, contact support.
Image generation is Enterprise-only. Make sure you're on an Enterprise plan. If you are and it's still not working, the image generation service may be temporarily unavailable.
Voice input requires browser support for the Web Speech API. Use Chrome, Edge, or Safari. Make sure you've granted microphone permissions to myslime.ai.
Try refreshing the page. Calendar events are stored on the server and should sync automatically. If events are missing, try closing and reopening the calendar panel.
Currently there is no self-service password reset. Contact [email protected] for assistance.
| Shortcut | Action |
|---|---|
Enter | Send message |
Shift + Enter | New line in message |
Escape | Close modals, panels, and SlimeBoard |
| Browser | Support | Notes |
|---|---|---|
| Chrome | ✅ Full | Recommended |
| Edge | ✅ Full | |
| Safari | ✅ Full | Voice input may vary |
| Firefox | ⚠️ Partial | Voice input not supported |
| Mobile Chrome | ✅ Full | PWA install available |
| Mobile Safari | ✅ Full | Add to Home Screen for PWA |
Need help? Have feedback? Found a bug?
Email: [email protected]
MySlime is built by Alec and Leonardo. We read every email and try to respond within 24 hours.
Ready to get started?
Try MySlime free at myslime.ai