You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
A common pattern is exposing the various bedrock models (Nova, Claude, Lllama3 etc) via API Gateway and Lambda.
Client -> AWS Api Gateway -> AWS Lambda -> Bedrock Model
I noticed this PR: #7828
It mentioned http(s) for Bedrock. Is there a way to call the Bedrock models this way using LiteLLM?
e.g.
The above will fail with a 404 as LiteLLM seems to add to the url:
https://some-aws-apigateway-url/bedrock/**v1/messages** when I really want it to be like:
https://some-aws-apigateway-url/bedrock/claude-3-5-sonnet-20241022
It would be great if this supported the converse format.
Beta Was this translation helpful? Give feedback.
All reactions