Poe API
A bot to draw stunning wallpapers with the sizes for your devices. I can also optimize your prompt for detailed imaginations.
Help:
* Append --aspect <RATIO> or --aspect <DEVICE> to generate wallpaper with desired aspect ratio.
Example:
sky , sunshine, sea and beach --aspect iphone15
future cyberpunk spaceship --aspect 9:16
* I shall enrich or optimize your your prompt, replied in the suggest messages after displaying the image.
https://poe.com/WallpaperFactory
Powered by a server managed by @flowinghorse. Learn more
Build with WallpaperFactory using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "wallpaperfactory",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.