From f9bbb23ffe7135df9fbcd0122bc0f3be07c25b84 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 7 Mar 2026 17:16:39 -0800 Subject: [PATCH] fix(ci): add bedrock-nova-pro to test_config.yaml with max_tokens cap Commit 66c822435e swapped nova-premier to nova-pro in the test but missed adding the model to the proxy config. Nova Pro has a 10k token limit so cap max_tokens at 5000 to stay clear of it. --- tests/proxy_e2e_anthropic_messages_tests/test_config.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/proxy_e2e_anthropic_messages_tests/test_config.yaml b/tests/proxy_e2e_anthropic_messages_tests/test_config.yaml index 72be11468fe..fc743f00ef5 100644 --- a/tests/proxy_e2e_anthropic_messages_tests/test_config.yaml +++ b/tests/proxy_e2e_anthropic_messages_tests/test_config.yaml @@ -24,6 +24,12 @@ model_list: model: "bedrock/us.anthropic.claude-opus-4-5-20251101-v1:0" aws_region_name: "us-east-1" + - model_name: bedrock-nova-pro + litellm_params: + model: "bedrock/us.amazon.nova-pro-v1:0" + aws_region_name: "us-east-1" + max_tokens: 5000 + - model_name: bedrock-nova-premier litellm_params: model: "bedrock/us.amazon.nova-premier-v1:0"