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.
- Clothing recommendation bot
- An example bot that takes in a user-uploaded image, analyzes it with Claude-3.5-Sonnet to recommend a new top, and then generates an image of the new clothing with Imagen-3 to return to the user.
- This is a good starting point for handling user-uploaded attachments, and also returning attachments with your bot.
- Python Code Runner
- An example bot that generates code based on the user query, runs it with the @Python bot, and attempts to debug it if theres any issues.
- This is a good starting point for chaining requests to various text models.
- 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.
- 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.
- 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 11 days ago