Free to Use
Publishable pk_ keys are free with rate limits — no credit card needed for
personal use.
Promptzy includes a built-in AI assistant that generates ready-to-use prompts on demand. It’s powered by Pollinations — a free, OpenAI-compatible AI API with access to dozens of top models.
Visit enter.pollinations.ai and sign up for a free account.
Create a new key. For browser use, choose a publishable key (pk_...) — it’s rate-limited but free and safe to use client-side.
Copy your key — you’ll paste it into Promptzy’s Settings next.
Open Promptzy and click the Settings icon (⚙️).
Scroll to AI Assistant Configuration.
Paste your Pollinations API Key into the key field.
Optionally select a different AI Model (default is gemini-fast — a great all-rounder).
Click Save Changes.
Click AI Prompt Assistant in the bottom-right corner of the screen to expand the panel.
Select a prompt type: System, Task, Image, or Video.
Describe what you want in the text area. For example:
Click Generate Prompt — the response streams in live.
Copy the result to clipboard, or click Use as Prompt to save it directly to your library.
Any Pollinations text model can be used. Change the model in Settings → AI Assistant Configuration.
| Model | Description |
|---|---|
gemini-fast | Google Gemini 2.5 Flash Lite — default, fast & affordable |
openai | GPT-5 Mini — fast and well-rounded |
openai-large | GPT-5.2 — most capable OpenAI model |
claude | Claude Sonnet 4.6 — nuanced, high-quality output |
claude-fast | Claude Haiku 4.5 — fast and smart |
deepseek | DeepSeek V3.2 — efficient reasoning |
mistral | Mistral Small 3.2 — lightweight and cost-effective |
qwen-coder | Qwen3 Coder 30B — great for code-related prompts |
The AI assistant uses a default system prompt tuned for generating high-quality prompts. You can override it:
Open Settings → AI Assistant Configuration.
Uncheck Use default system prompt.
Edit the prompt freely — tailor the assistant’s persona, style, and output format to your needs.
Click Save Changes. Your custom prompt is stored in your browser.
Click Reset to default at any time to restore the original system prompt.
Promptzy calls the Pollinations API directly from your browser using a streaming fetch request:
POST https://gen.pollinations.ai/v1/chat/completionsAuthorization: Bearer <your-api-key> headertemperature: 0.4, seed: -1 (random), stream: trueThe API key is resolved in this priority order:
VITE_POLLINATIONS_API_KEY environment variable (for Docker / self-hosted builds)pollinations-api-key in localStorage (set via Settings dialog)Pollinations provides access to a wide range of AI models through a single, OpenAI-compatible API.
Free to Use
Publishable pk_ keys are free with rate limits — no credit card needed for
personal use.
Many Models
Access GPT-5, Claude Sonnet, Gemini, DeepSeek, Mistral, and more from one API endpoint.
Streaming
Supports Server-Sent Events (SSE) for real-time streaming responses — no waiting for the full output.
OpenAI-Compatible
Use any OpenAI SDK by just changing the base URL to
https://gen.pollinations.ai.
Full API documentation: gen.pollinations.ai/api/docs