Can't use plugins: "Unrecognized request argument supplied: functions" #1614
-
When I try to use the DALL-E or DALL-E 3 plugin, every request results in the same error:
I've tried a number of different models, and I always get the same error. I've confirmed I can use my OpenAI API Key for DALL-E using the Python API. I've searched through the issues on GitHub and haven't found anyone else experiencing this, so I'm wondering if I'm doing something wrong or if this is a new issue (I updated today, but never tried using plugins before updating). Any help would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Thanks for checking out the project. Both are working for me so maybe there's something up with the exact model you have selected or the service you are accessing DALL-E through Other than the selected models, Do you have any of these fields filled out? They are optional, since you can provide the key from the frontend. # DALL·E
#----------------
# DALLE_API_KEY= # Key for both DALL-E-2 and DALL-E-3
# DALLE3_API_KEY= # Key for DALL-E-3 only
# DALLE2_API_KEY= # Key for DALL-E-2 only
# DALLE3_SYSTEM_PROMPT="Your DALL-E-3 System Prompt here"
# DALLE2_SYSTEM_PROMPT="Your DALL-E-2 System Prompt here"
# DALLE_REVERSE_PROXY= # Reverse proxy for DALL-E-2 and DALL-E-3
# DALLE3_BASEURL= # Base URL for DALL-E-3
# DALLE2_BASEURL= # Base URL for DALL-E-2 Check the completion model and the agent model Note you should have those 2 switches on, for functions and skip completion, like I do |
Beta Was this translation helpful? Give feedback.
Thanks for checking out the project. Both are working for me so maybe there's something up with the exact model you have selected or the service you are accessing DALL-E through
Other than the selected models, Do you have any of these fields filled out? They are optional, since you can provide the key from the frontend.