improved
Updated suggested Poe Previews prompt
11 days ago by Alexis
- Updated the suggested optimized Poe Previews prompt to better support React. See https://creator.poe.com/docs/how-to-create-a-prompt-bot#optimize-prompt-for-previews for the full prompt
improved
v0.0.52: Minimum Python version is now 3.9
14 days ago by John Li
- We updated the fastapi_poe library to require Python >=3.9, as Python 3.8 reached end of life in October 2024.
- This version also includes a fix for tool calls failing when the model decides not to call the function.
added
Support for creating prompt bots in responses
about 1 month ago by Alexis
- Added ability for server bots to help users create prompt bots with pre-filled fields. See https://creator.poe.com/docs/server-bots-functional-guides#creating-bots-that-help-their-users-create-prompt-bots for more details.
improved
v0.0.51 Added download_filename to specify a filename when downloading from url
about 1 month ago by Alexis
- Added download_filename for specifying a filename when downloading from url. Previously the filename from the download_url was always used. This enables bots to set a custom filename for attachments they post via download_url.
improved
v0.0.47 Expose sync_bot_settings
6 months ago by John Li
- Users can now call sync_bot_settings using fp.sync_bot_settings() directly
improved
ErrorResponse "text" Field is Now User-facing
7 months ago by John Li
- Prior to this change, the
text
field ofErrorResponse
was not displayed on the client and errors always showed the text "Bot x ran into an unexpected issue". With this change, thetext
field is now displayed to the user, allowing for custom error messages. It is recommended to put the raw exception in theraw_response
field instead.
added
Added sender_id Field in ProtocolMessage
8 months ago by John Li
- Added an additional field
sender_id
inProtocolMessage
. This is intended to help bot creators differentiate between who sent a particular message, which is useful in a multi-bot chat.
added
Support for Multi Bot Chat
9 months ago by Alexis
- Added
enable_multi_bot_chat_prompting
setting (defaults to False), which if enabled, will have Poe combine previous chat history into a single message with special prompting so that the current bot will have sufficient context about a multi bot chat. - The timeout for bot messages has been increased from 120s -> 600s.
added
Support for Sending Text/Image Attachment Content
10 months ago by Alexis
- Added
expand_text_attachments
andenable_image_comprehension
settings to request parsed content/descriptions from text and image attachments with thequery
request. This content is sent through the newparsed_content
field in theattachment
dictionary. This change makes enabling file uploads much simpler. - Added the
enforce_author_role_alternation
setting. If enabled, Poe will concatenate messages so that they follow role alternation, which is a requirement for certain LLM providers like Anthropic.