diff --git a/src/components/chat/ChatErrorBox.tsx b/src/components/chat/ChatErrorBox.tsx index d7e0796..2c8d6b9 100644 --- a/src/components/chat/ChatErrorBox.tsx +++ b/src/components/chat/ChatErrorBox.tsx @@ -66,6 +66,10 @@ export function ChatErrorBox({ ); } + // This is a very long list of model fallbacks that clutters the error message. + if (error.includes("Fallbacks=")) { + error = error.split("Fallbacks=")[0]; + } return {error}; }