Example bots
These bots are all server bots built on the API. You can try each of them live in Poe by clicking the link.
- StableDiffusionXL
- This bot uses SDXL to generate an image for the user based on their prompt.
- A simplified version of the source code can be found at:
- https://github.com/poe-platform/server-bot-quick-start/blob/main/sdxl_bot.py
- This is a good starting point for building your own image generation bot.
- GPT-4o-mini
- This bot uses OpenAI client to generate chat completions for the user's conversation.
- A simplified version of the source code can be found at:
- https://github.com/poe-platform/server-bot-quick-start/blob/main/wrapper_bot.py
- This is a good starting point for building a conversational bot with OpenAI's client library.
- Web search
- This bot conducts web searches and then uses GPT-4o Mini via the bot query API to write an answer informed by the searches. This bot is an official bot operated by Poe, built entirely on the same API we make available to creators.
- Mixtral-8x7B-Chat
- Created by Fireworks, this bot provides access to Mixtral 8x7B Mixture-of-Experts.
- Reference code for this bot, along with other Fireworks-hosted bots on Poe can be found at:
Updated 30 days ago