-
- Notifications
You must be signed in to change notification settings - Fork 647
Open
Description
In digging through the code I have a nasty suspicion that attachments are not fully
asyncio
safe - I think sometimes when an async model is executing a prompt it may make a blocking call toattachment.base64_content()
which callsattachment.content_bytes()
which calls a blockinghttpx.get()
. Fixing this will be tricky because it will involve fixing a bunch of existing plugins.
Originally posted by @simonw in #1142 (comment)