Quick Reference
Fresh 🌱Fast lookup for common commands, patterns, and troubleshooting.
Sections
Commands
Common code snippets and command patterns.
Troubleshooting
Solutions to common problems and errors.
Quick Links
┌─────────────────────────────────────────────────────────────┐
│ QUICK REFERENCE GUIDE │
├─────────────────────────────────────────────────────────────┤
│ │
│ Installation │
│ pip install fastapi-poe │
│ │
│ Basic Query │
│ fp.get_bot_response_sync(messages, bot_name, api_key) │
│ │
│ Async Query │
│ fp.get_bot_response(messages, bot_name, api_key) │
│ │
│ Upload File │
│ fp.upload_file_sync(file_handle, api_key) │
│ │
│ Custom Parameters │
│ parameters={"thinking_budget": 12288} │
│ │
└─────────────────────────────────────────────────────────────┘Common Bot Names
GPT-5Claude-Sonnet-4.5Claude-Opus-4.1Grok-4Imagen-4
API Endpoints
- Poe API:
https://api.poe.com/v1(OpenAI-compatible) - API Key: poe.com/api_key
- Rate Limit: 500 requests/minute
Common Parameters
| Parameter | Bot Type | Example Value |
|---|---|---|
thinking_budget | Claude | 12288 |
reasoning_effort | GPT | "high" |
aspect_ratio | Image bots | "16:9" |
Next: Commands