pollinations

Free Open-Source Image and Text Generation

1466
163
JavaScript

Pollinations.AI


๐Ÿ†• Latest News

  • ๐Ÿ” Special Bee - New โ€œSpecial Beeโ€ issue template! Projects can now request referrer verification by submitting a Domain Verification RequestMore info
  • ๐Ÿ“š API Documentation - Major API documentation improvements! Weโ€™ve completely revamped our API docs with better examples, clearer explanations, and interactive code snippets. Check it out.
  • ๐Ÿค– MCP Server - New Model Context Protocol (MCP) server for AI assistants like Claude to generate images directly! Learn more.
    MCP Server Interface
  • ๐Ÿ’ฒ Support Us - You can now support us with our new Tip Us button. Optionally connect your Discord account to Ko-Fi to get premium Discord roles!
  • ๐ŸŽต Audio Generation - New text-to-speech and speech-to-text capabilities are now available! Try the openai-audio model - see our API documentation for details.
  • ๐Ÿค– AI Code Assistant - Weโ€™re excited to announce MentatBot, the autonomous AI coding assistant that implements new features directly from GitHub issues! Simply create an issue describing what youโ€™d like to see, and MentatBot will analyze and implement it. Learn more.

Pollinations.AI Logo

๐ŸŒŸ Introduction

Pollinations.AI is an open-source gen AI startup based in Berlin, providing the most easy-to-use, free text and image generation API available. No signups or API keys required. We prioritize your privacy with zero data storage and completely anonymous usage.

๐Ÿš€ Key Features

  • ๐Ÿ”“ 100% Open Source
  • ๐Ÿ†“ Free to use
  • ๐Ÿ”’ Simplicity and privacy: No logins, no keys, no data stored
  • ๐Ÿ–ผ๏ธ Embed like any normal image or text
  • ๐ŸŽต Audio generation: Text-to-speech and speech-to-text capabilities
  • ๐ŸŒ Over 50,000 active users and > 20 million images generated per month
  • ๐Ÿค Used by various open-source LLMs, bots, and communities
  • ๐ŸŽฃ Easy-to-use React hooks (React Hooks Examples)
  • ๐Ÿค– Autonomous Development: Features implemented by our MentatBot coding assistant through GitHub issues
Star History Chart

๐Ÿš€ Getting Started

Image Generation

  1. Visit https://pollinations.ai
  2. Type your description in the text box
  3. Click โ€œGenerateโ€ and watch the magic happen!

Text Generation

  1. Visit https://text.pollinations.ai
  2. Start chatting with the AI

Audio Generation

  1. Use the openai-audio model with our API (explore voices at OpenAI.fm)
  2. Generate speech from text or transcribe audio to text

MCP Server for AI Assistants

Our MCP (Model Context Protocol) server enables AI assistants like Claude to generate images and audio directly. Learn more

# Run with npx (no installation required)
npx @pollinations/model-context-protocol

AI assistants can:

  • Generate images from text descriptions
  • Create text-to-speech audio with various voice options
  • Play audio responses through the system speakers
  • Access all Pollinations.AI models and services seamlessly
  • List available models, voices, and capabilities

For more advanced usage, check out our API documentation.

๐Ÿ–ฅ๏ธ How to Use

Web Interface

Our web interface is user-friendly and doesnโ€™t require any technical knowledge. Simply visit https://pollinations.ai and start creating!

API

Use our API directly in your browser or applications:

https://pollinations.ai/p/conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden

Replace the description with your own, and youโ€™ll get a unique image based on your words!

๐ŸŽจ Examples

Image Generation

Hereโ€™s an example of a generated image:

Conceptual Isometric World

Python code to download the generated image:

import requests

def download_image(prompt):
    url = f"https://pollinations.ai/p/{prompt}"
    response = requests.get(url)
    with open('generated_image.jpg', 'wb') as file:
        file.write(response.content)
    print('Image downloaded!')

download_image("conceptual_isometric_world_of_pollinations_ai_surreal_hyperrealistic_digital_garden")

Text Generation

To generate text, use this URL:

https://text.pollinations.ai/What%20is%20artificial%20intelligence?

Audio Generation

To generate audio from text, use this URL:

https://text.pollinations.ai/Welcome%20to%20Pollinations?model=openai-audio&voice=nova

๐Ÿ› ๏ธ Integration

React Hooks

We offer React hooks for easy integration. Example usage:

import React from 'react';
import { usePollinationsImage, usePollinationsText } from '@pollinations/react';
import ReactMarkdown from 'react-markdown';

const AIGeneratedContent = () => {
  const imageUrl = usePollinationsImage("Beautiful landscape of Paris with Eiffel Tower", { width: 800, height: 600, seed: 42 });
  const markdown = usePollinationsText("Write a brief travel guide for Paris, including top attractions and local cuisine in markdown", { seed: 42 });

  return (
    <div>
      <h2>AI-Generated Travel Guide</h2>
      <img src={imageUrl} alt="AI Generated" />
      {markdown ? (
        <ReactMarkdown>{markdown}</ReactMarkdown>
      ) : (
        <p>Loading markdown content...</p>
      )}
    </div>
  );
};

export default AIGeneratedContent;

Check out our Pollinations React Hooks for more details.

Architecture

graph LR
    Q[Bots - Discord, Telegram, WhatsApp] --> L1
    
    N[30+ Mobile and Web Apps] --> L1
    N --> L2
    
    A[pollinations.ai Web Frontend] --> L1
    A --> L2
    
    R[AI Agents - Qwen, Sillytavern, ...] --> L1
    
    AI[AI Assistants - Claude] --> MCP[MCP Server]
    MCP --> L1
    
    L1[Image CDN] --> CF[Cloudflare Worker with R2 Cache]
    L2[Text CDN] --> C
    
    CF --> B
    
    B[image-origin.pollinations.ai - AWS EC2 CPU] --> F[Azure OpenAI - Prompt Enhancing]
    B --> S[LlamaGuard - Safety Checker]
    F --> E[Translation Service - 1 GPU VM]
    E --> D[FLUX image generation model - 2-6 GPU VMs on AWS]
    
    C[text.pollinations.ai - AWS EC2 CPU] --> P[karma.yt - Realtime News]
    C --> SC[Scaleway API]
    C --> DS[Deepseek API]
    C --> G[Azure-hosted Serverless LLMs]
    C --> CFM[Cloudflare AI]
    SC --> MI[Mistral Models]
    SC --> QW[Qwen Models]
    SC --> LL[Llama Models]
    DS --> DM[Deepseek Models]
    G --> H[OpenAI]
    G --> K[Claude]
    CFM --> CFL[Llama & Deepseek Models]

Projects Using Pollinations.AI

Pollinations.AI is used in various projects, including:

LLM Integrations

Project Description Creator Links
๐Ÿ†• IMyself AI ๐Ÿ‡จ๐Ÿ‡ณ ๆˆ‘ไปฌๆไพ›้ซ˜่ดจ้‡็š„AI็”ŸๆˆๆœๅŠก๏ผŒๅŒ…ๆ‹ฌๅ›พๅƒ็”Ÿๆˆใ€ๆ–‡ๆœฌ็”Ÿๆˆใ€้Ÿณ้ข‘็”Ÿๆˆๅ’Œ่ฏญ้Ÿณ่ฝฌๆ–‡ๆœฌๆœๅŠก๏ผŒ ่ฎฉๆ‚จ่ฝปๆพๅˆ›ๅปบๅ„็งๅˆ›ๆ„ๅ†…ๅฎนใ€‚ (We provide high-quality AI generation services, including image generation, text generation, audio generation, and speech to text services, allowing you to easily create various creative content.) Shadownc Website
๐Ÿ†• AI Chat Assistant A comprehensive AI Chat Assistant designed to provide users with an interactive chat interface that supports both text and image generation. Features multiple AI models (GPT-4o, Claude, Qwen-Coder, Llama, Mistral, etc.), image generation from text prompts, image-to-image processing, and a responsive UI with desktop and mobile support @dr_misterio Website
๐Ÿ†• FreeAI ๐Ÿ‡จ๐Ÿ‡ณ An AI application platform based on Pollinations.AI API, providing free and unlimited AI chat assistant, image generation, and voice synthesis services @Azad-sl Website, GitHub
๐Ÿ†• AI Unlimited Customizable Feature Module ๐Ÿ‡จ๐Ÿ‡ณ This project provides a free API interface supporting various text and image generation models, including OpenAIโ€™s GPT-4, Gemini 2.0, etc. Users can access these models without an API key to perform text generation, image generation, translation, text polishing, and more S_S Website
๐Ÿ†• PrivatePollenAI A privacy-focused chat assistant app that securely stores data locally, integrates with PollinationAI for text and image generation, features a minimalistic UI, and allows users to choose models and write their own system instructions tenacious_humming_bird Website, GitHub
๐Ÿ†• Zelos AI image generator It uses Pollinations for both prompt enhancing and image generation, it was a easy to make project due to pollinations services being easy to use Roblox Profile Website
๐Ÿ†• MiReXa AI A state-of-the-art chatbot integrating multiple LLMs with advanced features including audio generation, image generation, mathematical proficiency, and real-time web search withthatway Website
Pollinations Chat Pollinationsโ€™ integrated AI for text and images, totally free and unlimited @adrianoprogramer Website, Instagram
LobeChat An open-source, modern-design ChatGPT/LLMs UI/Framework with speech-synthesis, multi-modal, and extensible plugin system - Website, GitHub
Qwen-Agent A framework for developing agentic LLM applications - GitHub
SillyTavern An LLM frontend for power users. Pollinations permits it to generate images - Docs, GitHub
FlowGPT Generate images on-demand with ChatGPT - Website
gpt4free The official gpt4free repository - various collection of powerful language models xtekky GitHub
Unity AI Lab A specialized uncensored LLM model built on Mistral Large, focused on unrestricted conversations - Website
DynaSpark AI A versatile AI assistant with advanced image and text generation capabilities Th3-C0der Website, GitHub

Creative & Interactive Applications

App Description Creator Links
๐Ÿ†• Podcast #1500 Podcast project featuring dialogues among LLMs, with first episode featuring 3o-mini and DeepSeek R1 70B discussing Vibe Coding @brain.diver Spotify
๐Ÿ†• LAHGen An advanced AI-driven text-to-image generation platform designed to provide users with high-quality and realistic AI-generated images based on textual prompts [email protected] Website
๐Ÿ†• Elixpo Art A Web interface to create thematic images from prompts, with multiple aspect ratios and also image reference inputs Ayushman Bhattacharya Website, GitHub
๐Ÿ†• Riffle A powerful tool designed to make reading English books more enjoyable and effective while helping you build your vocabulary naturally. Using Pollinations AI to create content that incorporates your own vocabulary words allows you to learn them in a vivid, engaging context. [email protected] Website
๐Ÿ†• VibeCoder A web app for coding with vibes, created using Pollinations.AI Open Source API without coding syntax. @Aashir__Shaikh Website, Twitter
๐Ÿ†• AI ๆ–‡ๆœฌ่ฝฌ้Ÿณ้ข‘ ๐Ÿ‡จ๐Ÿ‡ณ ่พ“ๅ…ฅๆ–‡ๆœฌ๏ผŒ้€‰ๆ‹ฉ่ฏญ้Ÿณ้ฃŽๆ ผ๏ผŒไธ€้”ฎๅฐ†ๆ–‡ๅญ—่ฝฌๆขไธบ่‡ช็„ถๆต็•…็š„่ฏญ้Ÿณใ€‚ ๆ”ฏๆŒๅคš็งๅฃฐ้Ÿณ็‰นๅพ๏ผŒๅธฎๆ‚จๅˆ›ๅปบไธ“ไธšๆฐดๅ‡†็š„้Ÿณ้ข‘ๅ†…ๅฎนใ€‚ (Input text, select voice style, and instantly convert text to natural, fluid speech. Supports various voice characteristics to help you create professional-grade audio content.) https://github.com/Azad-sl Website, GitHub
๐Ÿ†• Case Me ๐Ÿ‡ง๐Ÿ‡ท O projeto consiste em uma vending machine que criarรก capinhas para celular personalizadas com fotos ou outras imagens e cores de escolha do cliente final. (A vending machine that creates customized phone cases with photos or other images and colors chosen by the end customer.) [email protected] -
๐Ÿ†• PixPax A user-friendly chatbot that lets you analyze images, remix existing images or create new images, all through simple chat. @andreas_11 Website
๐Ÿ†• Watch TV with neko (Roblox) Roblox game where you can talk with AI catgirls ๐Ÿพ or just have fun, talking with other players in cozy rooms โญ๏ธ @mangofoxplay Roblox
๐Ÿ†• Jenny AI An AI chatbot and character creation platform with tts and sst it also has image generation and vision ability which are powered by pollinations. HiiiiiPritam Website
๐Ÿ†• CalcuBite AI A smart tool that analyzes food from images to provide calorie and nutrient details. Just take a photo, and it quickly gives you an estimate of your mealโ€™s nutritional value. It uses AI for accurate analysis, and if you run out of free scans, you can watch an ad to get more! @sugamdeol Website
๐Ÿ†• RoastMaster AI An AI-powered roast generator that allows users to upload selfies for savage AI-generated roasts, enter text for brutal critiques, or engage in roast battles. Images are processed securely on the device, protecting user privacy @sugamdeol Website
๐Ÿ†• roastmyselfie.app AI Personality Analyzer - Get roasted and psychoanalyzedโ€ฆ just from one selfie! Dare to try? @andres_11 Website
๐Ÿ†• StoryMagic: Interactive Kids Stories An interactive web application designed to create engaging and customizable stories for children. Features AI-powered story generation, customizable themes, interactive elements, visual customization, web search integration, and a user-friendly interface @dr_misterio Website
๐Ÿ†• PromptPix (Android) An AI-powered image generation platform for Android designed to create stunning visuals from text prompts. Features dynamic image generation as users scroll, save to gallery, favorites, and a user-friendly interface @taylorsnupe Expo, GitHub
๐Ÿ†• AIๅ„ฟ็ซฅๆ•…ไบ‹ ๐Ÿ‡จ๐Ÿ‡ณ ๅŸบไบŽๆญค้กน็›ฎ ๆž„ๅปบๆœ‰่ถฃ็š„ๅญฉๅญๆ•…ไบ‹ไนฆๅบ”็”จๆผ”็คบ (Based on this project, build an interesting childrenโ€™s storybook application demo) MZ Website
๐Ÿ†• Herramientas IA Tools designed with Pollinations.AI and the DescartesJS editor, including tools from other Pollinations.AI community members @juanrivera126 Website
๐Ÿ†• AvatarStudio A system for creating custom characters that uses the Pollinations API for totally free and unlimited image generation @nic-wq Website
๐Ÿ†• Musify - AI Enhanced Music Streaming Musify is your AI-powered music buddy, making your jam sessions smarter and more fun. It is powered by pollinations api, it offers a slick and intuitive music experience with features like AI Music Assistant, Voice Commands, AI Playlist Creator, and Responsive Design. @Sugamdeol Website
๐Ÿ†• image1gen Website to easily create images via pollinations.ai API @oopshnik Website, GitHub, HuggingFace
๐Ÿ†• AI Image Generator A web-based AI image generator powered by Pollinations.ai, featuring multi-model support, customizable parameters, and real-time preview @hrisjeui Website, GitHub
๐Ÿ†• ๐ŸŽต PolliSonic Generator An AI-driven tool that transforms text prompts using MidiJourney into MIDI-based melodies through browser oscillators @brain.diver Website, GitHub
๐Ÿ†• Abyss Ascending A web-based generative interactive fiction (text adventure) set in a sci-fi underwater world @brain.diver Website, GitHub
๐Ÿ†• ๐ŸŽฎ Deep Saga A text based RPG with AI-generated scene images @jr_7_77 Play Store
[AI] Character RP (Roblox) A popular Roblox game for AI character roleplay @renewed Roblox
MIDIjourney An AI-powered plugin for Ableton Live that turns text descriptions into music KORUS Labs GitHub
TurboReel An open-source video generation system using AI @pedroriosa Website, GitHub
Rangrez AI A web platform for inspiring, creating, and customizing designs @saadaryf Website
Infinite Tales A Choose Your Own Adventure RPG, dynamically narrated by AI JayJayBinks Website, GitHub
StorySight An app to help children with learning disabilities - GitHub
StoryWeaver Crafts personalized picture books for children Multiple Authors Devpost
Sirius Cybernetics Elevator Challenge A Hitchhikerโ€™s Guide to the Galaxy themed LLM-based elevator game @thomash_pollinations Demo, GitHub
POLLIPAPER A dynamic wallpaper app that uses Pollinations AI @intolerant0ne GitHub
AI PPT Maker Create AI-powered presentations using Pollinationsโ€™ API @k_ush Website
UR Imagine & Chat AI A free and limitless image generator with companion AI chat/roleplay system withthatway Website
Pollinations Gallery A clean and simple gallery showcasing communityโ€™s AI-generated images @deng-xian-sheng Website
AI-Bloom A minimal creative showcase of AI-powered content generation @diepdo1810 Website

Tools & Interfaces

App Description Creator Links
๐Ÿ†• WordPress AI Vision Block A custom WordPress Gutenberg block that allows you to generate images using the Pollinations API mahmood-asadi Website, GitHub
๐Ÿ†• toai.chat An AI chat service that operates exclusively via Curl commands, specifically designed for users working in terminal environments without the need for a standalone AI client [email protected] Website, GitHub
Pollinations Feed A web interface that showcases the realtime feed of pollinations with a bento-grid Ayushman Bhattacharya Website, GitHub
Elixpo Art A web interface for easy image generation with theme selection Ayushman Bhattacharya Website, GitHub
Elixpo Art Chrome Extension An Open Source Chrome Extension for easy image generation from selected texts Ayushman Bhattacharya Chrome Extension, GitHub
๐Ÿ†• Pollinations.ai Model Comparison An interactive tool designed to compare outputs from various large language models with customizable timeout settings and real-time testing capabilities. @dseeker Website, GitHub
๐Ÿ†• Anime AI Generation Create professional-quality anime characters with powerful AI technology. No artistic skills required. @shreyas281898 Website
๐Ÿ†• Pollinations.DIY A browser-based coding environment based on bolt.diy, featuring integrated Pollinations AI services, visual code editing, and project management tools @thomash_pollinations Website, GitHub
๐Ÿ†• Pal Chat An iOS app that integrates with all LLMs including Pollinations AI models in one unified simple interface @pallavmac App Store
Pollinator Android App An open-source Android app for text-to-image generation @gaurav_87680 GitHub
Own-AI An AI text-to-image generator Sujal Goswami Website, GitHub
JustBuildThings A collection of AI tools for image generation, character chat, and writing rasit Website
Image Gen - Uncensored Edition A powerful image generation assistant on HuggingChat @DeFactOfficial HuggingChat
Free AI Chatbot & Image Generator A mobile app for unlimited AI chat and image generation @andreas_11 Website
JCode Website Builder A website generator using Pollinations text API @rtxpower Website
Server Status Dashboards Real-time monitoring dashboards for Pollinations text and image servers @tolerantone Text Status, Image Status
Websim A web simulation tool that integrates Pollinations.ai @thomash Website

Social Bots

Bot Description Creator Links
๐Ÿ†• AlphaLLM - AI Discord Bot Discord bot that uses several APIs (Pollinations AI and Cerebras AI), to offer a variety of features, including advanced text generation with a history of your conversations, image and voice generation @the_yerminator Website, GitHub
๐Ÿ†• ๐Ÿค– pollinations-tg-bot ๐Ÿ‡จ๐Ÿ‡ณ A Telegram bot deployed on Cloudflare Workers, allowing users to generate images, text-to-speech, transcribe voice messages, chat with AI models, and more through Pollinations API @Shadownc Telegram, GitHub
๐Ÿ†• Gacha A versatile AI chat-bot and image generator powered by Pollinations.AI, featuring web search, image generation with model selection, and character-aware image generation through !webgen command @dr_misterio Website, Install
๐Ÿ†• One Word A Telegram bot for a word-matching game where players try to write the same word simultaneously, featuring image generation from game words using Pollinations.AI @Dimaq21 Telegram
๐Ÿ†• Titan-GPT Free Telegram bot providing access to neural networks including image and text generation powered by Pollinations.AI @titangpt_support Telegram
Discord Bot A Discord bot for generating images based on user prompts @Zngzy Discord, GitHub
Telegram Bot A Telegram bot for generating images based on user prompts Wong Wei Hao Telegram
WhatsApp Group A WhatsApp group for image generation @dg_karma Join Group
OpenHive A Discord server bridging Discord and AI, featuring Beebot @creativegpt Discord
Anyai A Discord bot and community for AI-driven content @meow_18838 Discord

SDK & Libraries

Library Description Creator Links
๐Ÿ†• pollinations_ai A Flutter/Dart SDK package for accessing all features of pollinations.ai including text generation, image generation, audio, and listing all supported models @Meenapintu pub.dev, GitHub
๐Ÿ†• Node.js Client Library A TypeScript/Node.js client for accessing Pollinations AI services including image generation, text processing, and speech synthesis. Features full TypeScript typings, dual CJS/ESM module support, 100% test coverage and feed/streams support, builder pattern API and axios-based HTTP client implementation @fqueis NPM, GitHub
๐Ÿ†• ComfyUI-Pollinations A custom node for ComfyUI that utilizes the Pollinations API to generate images and text based on user prompts, supporting multiple image and text generation models 1038lab GitHub
pollinations NPM Module A Node.js package for accessing all Pollinations features @maxencexz NPM
pypollinations Comprehensive Python wrapper for Pollinations AI API @KTS-o7 PyPI
@pollinations/react React hooks for easy integration of Pollinationsโ€™ features @pollinations NPM, Docs
Polli API Dashboard Real-time dashboard monitoring text.pollinations.ai/feed @Sugamdeol Website, GitHub
pollinations.ai Python SDK Official Python SDK for working with Pollinationsโ€™ models @pollinations-ai GitHub

Tutorials

Tutorial Description Creator Links
๐Ÿ†• Connect Pollinations with Open Web UI tutorial How to add Pollinations AI Text Models to OpenWebUI for free access to top language models like GPT-4o, Mistral, Claude, and Gemini without signups or API keys @cloph-dsp GitHub
๐Ÿ†• Chinese DeepSeek Tutorial A tutorial showing how to make DeepSeek AI support image generation by leveraging Pollinations.aiโ€™s API isinry Forum Post, Profile
Artistic Styles Book An interactive book showcasing 90+ artistic styles Juan Gmo. Rivera HTML, PDF
Proyecto Descartes Educational initiative integrating Pollinations AI into STEM Juan Gmo. Rivera Website
Tutorial An in-depth Portuguese tutorial on using Pollinations AI Janderson de Sales Website
Apple Shortcuts Guide Video guide on creating AI images using Apple Shortcuts RoutineHub YouTube, Shortcut

Have you created a project using Pollinations.AI? Submit it through our project submission form to get it listed here! We use a structured GitHub issue template to make the submission process easy and organized.

๐Ÿ”ฎ Future Developments

Weโ€™re constantly exploring new ways to push the boundaries of AI-driven content creation. Some areas weโ€™re excited about include:

  • Digital Twins: Creating interactive AI-driven avatars
  • Music Video Generation: Combining AI-generated visuals with music for unique video experiences
  • Real-time AI-driven Visual Experiences: Projects like our Dreamachine, which create immersive, personalized visual journeys

๐ŸŒ Our Vision

Pollinations.AI envisions a future where AI technology is:

  • Open & Accessible: We believe AI should be available to everyone, not locked behind paywalls or restricted access

  • Transparent & Ethical: Our open-source approach ensures transparency in how our models work and behave

  • Community-Driven: Weโ€™re building a platform where developers, creators, and AI enthusiasts can collaborate and innovate

  • Interconnected: Weโ€™re creating an ecosystem where AI services can seamlessly work together, fostering innovation through composability

  • Evolving: We embrace the rapid evolution of AI technology while maintaining our commitment to openness and accessibility

Weโ€™re committed to developing AI technology that serves humanity while respecting ethical boundaries and promoting responsible innovation. Join us in shaping the future of AI.

๐Ÿค Community and Development

We believe in community-driven development. You can contribute to Pollinations.AI in several ways:

  1. Coding Assistant: The easiest way to contribute! Just create a GitHub issue describing the feature youโ€™d like to see implemented. The MentatBot AI assistant will analyze and implement it directly! No coding required - just describe what you want.

  2. Project Submissions: Have you built something with Pollinations.AI? Use our project submission template to share it with the community and get it featured in our README.

  3. Feature Requests & Bug Reports: Have an idea or found a bug? Open an issue and let us know. Our team and the MentatBot assistant will review it.

  4. Community Engagement: Join our vibrant Discord community to:

    • Share your creations
    • Get support and help others
    • Collaborate with fellow AI enthusiasts
    • Discuss feature ideas before creating issues

For any questions or support, please visit our Discord channel or create an issue on our GitHub repository.

๐Ÿ—‚๏ธ Project Structure

Our codebase is organized into several key folders, each serving a specific purpose in the Pollinations.AI ecosystem:

This structure encompasses the frontend website, backend services for image and text generation, and integrations like the Discord bot and MCP server, providing a comprehensive framework for the Pollinations.AI platform.

๐Ÿข Supported By

Pollinations.AI is proud to be supported by:

Supported Companies

๐Ÿ“œ License

Pollinations.AI is open-source software licensed under the MIT license.


Made with โค๏ธ by the Pollinations.AI team

Contributors