From 9e9de7f6e298700c4e75870439a7651df436783b Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sun, 24 Mar 2024 12:13:19 -0700 Subject: [PATCH] docs(routing.md): add fallbacks being done in order --- docs/my-website/docs/routing.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/my-website/docs/routing.md b/docs/my-website/docs/routing.md index e65dc4dce9b..fb16c4f085d 100644 --- a/docs/my-website/docs/routing.md +++ b/docs/my-website/docs/routing.md @@ -442,6 +442,8 @@ If a call fails after num_retries, fall back to another model group. If the error is a context window exceeded error, fall back to a larger model group (if given). +Fallbacks are done in-order - ["gpt-3.5-turbo, "gpt-4", "gpt-4-32k"], will do 'gpt-3.5-turbo' first, then 'gpt-4', etc. + ```python from litellm import Router