Fallback from SDXL to Dall-e-3
Was this helpful?
Was this helpful?
Generative AI models have revolutionized text generation and opened up new possibilities for developers. What next? A new category of image generation models.
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.
Begin by storing API keys in the Portkey Vault.
To save your OpenAI and StabilityAI keys in the Portkey Vault:
Go to portkey.ai
Click Virtual Keys and then Create
Enter Name and API Key,
Hit Create
Copy the virtual key from the KEY column
We successfully have set up virtual keys!
For more information, refer the .
The multi-modal AI gateway will use these virtual keys in the future to apply a fallback mechanism to every request from your app.
With Portkey, you can call Stability AI models like SDXL right from inside the OpenAI SDK. Just change the base_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.
Declare the arguments to pass to the parameters of OpenAI SDK and initialize a client instance.
The api_key
parameter is passed a random string since it’s redundant as the request will be handled through Portkey.
To generate an image:
The image you receive in the response is encoded in base64 format, which requires you to decode it before you can view it in the Jupyter Notebook. In addition, Portkey offers logging for observability. To find all the information for every request, simply check the requests on the Dashboard > Logs.
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:
These configs tell the AI gateway to follow an fallback
strategy, where the primary target to forward requests to is Stability AI (automatically inferred from the virtual key) and then to OpenAI. The override_params
let’s you override the default models for the provider. Finally, surprise surprise! — we also enabled caching with just one more key-value pair.
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.
Finally, the requests will be sent like we did with OpenAI SDK earlier, but with one specific difference - the config
parameter. The request is sent through Portkey and uses saved gateway configs as references to activate the fallback mechanism.
Portkey supports multiple providers offering multimodal capabilities, such as OpenAI, Anthropic, and Stability AI, all accessible through a unified API interface following OpenAI Signature.
Learn about and from the docs.
All the requests that go through Portkey will appear in the Logs page within the Portkey Dashboard. You can apply filters or even trace the specific set of requests. Check out . Simultaneously, a fallback icon is turned on for the log where the fallback is activated.
For further exploration, why not ?