WhitAi
Empowering creativity with intelligent AI tools
Chat Interface
AI Generators
Content Generators
Blog Post Generator
Create engaging blog content with SEO optimization
Social Media Content
Generate posts for various social platforms
Email Campaigns
Create compelling email marketing content
Code Generators
JavaScript Code
Generate functional JavaScript solutions
Python Scripts
Create Python code for various applications
HTML/CSS Templates
Generate responsive web templates
Image Generators
Logo Design
Create unique logo concepts
Digital Art
Generate artistic images and illustrations
Photo Editing
Enhance and modify existing images
How to Use WhitAi
Start with the Chat Interface
Use the main chat window to describe what you want to create. Be as specific as possible for better results.
Explore Generators
Click on the collapsible sections to open different generator categories. Select a specific generator for specialized output.
View Results in Popups
Generated content opens in popup windows that can be resized and moved. Use the X button to close when done.
Manage Your Work
Save, copy, or export your creations using the action buttons in each popup window.
API Keys & Configuration
OpenRouter API Configuration
const response = await fetch('https://openrouter.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer 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',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'Meta Llama 3.2 3B Instruct',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'Hello!' }
],
temperature: 0.7,
max_tokens: 3500
})
});
const data = await response.json();
console.log(data.choices[0].message.content);