improved
ErrorResponse "text" Field is Now User-facing
5 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
7 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
8 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
9 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.