fix(bedrock_httpx.py): fix error code for not found provider/model combo to be 404

This commit is contained in:
Krrish Dholakia 2024-08-13 20:35:18 -07:00
parent d6125ca257
commit c1279ed809
2 changed files with 4 additions and 4 deletions

View file

@ -1055,8 +1055,8 @@ class BedrockLLM(BaseLLM):
},
)
raise BedrockError(
status_code=400,
message="Bedrock HTTPX: Unsupported provider={}, model={}".format(
status_code=404,
message="Bedrock HTTPX: Unknown provider={}, model={}".format(
provider, model
),
)