Set up Fallback from Stable Diffusion to Dall-E
This cookbook introduces Portkey’s multimodal AI gateway, which helps you switch between multiple image generation models without any code changes — all with OpenAI SDK. You will learn to set up fallbacks from Stable Diffusion to Dall-E.1. Add Providers in Model Catalog
Begin by adding your API keys in Portkey’s Model Catalog.- Go to Model Catalog
- Click Add Provider
- Add your StabilityAI credentials (name it e.g.,
stability-prod) - Add your OpenAI credentials (name it e.g.,
openai-prod)
2. Making a call to Stability AI using OpenAI SDK
With Portkey, you can call Stability AI models like SDXL right from inside the OpenAI SDK. Just change thebase_url to Portkey Gateway and add defaultHeaders while instantiating your OpenAI client, and you’re good to go
Import the openai and portkey_ai libraries to send the requests, whereas the rest of the utility libraries will help decode the base64 response and print them onto Jupyter Notebook.
Python
Python
OpenAI Python
api_key parameter is passed a random string since it’s redundant as the request will be handled through Portkey.
To generate an image:
Python
3. Now, Setup a Fallback from SDXL to Dall-E
Let’s learn how to enhance the reliability of your Stability AI requests by configuring automatic fallbacks to Dall-E in case of failures. You can use Gateway Configs on Portkey to implement this automated fallback logic. These configurations can be passed while creating your OpenAI client. From the Portkey Dashboard, open Configs and then click Create. In the config editor, write the JSON for Gateway Configs:Config
fallback strategy, where the primary target is Stability AI and the fallback is OpenAI. The override_params let you specify the model in @provider-slug/model-name format.
Learn about Gateway Configs and Caching from the docs.
Hit Save Config on the top right corner and grab the **Config ID. **Next up, we are going to use the _Config ID _in our requests to activate fallback mechanism.
4. Make a request with gateway configs
Finally, the requests will be sent like we did with OpenAI SDK earlier, but with one specific difference - theconfig parameter. The request is sent through Portkey and uses saved gateway configs as references to activate the fallback mechanism.
OpenAI Python

