Last active
April 10, 2025 10:56
-
-
Save sofianhamiti/395ee302746cae8c5a623cb4791230ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------- | |
| # Global Model Configuration | |
| # ----------------------------------------------------- | |
| model_defaults: &model_defaults | |
| model: "bedrock/us.anthropic.claude-3-7-sonnet-20250219-v1:0" # Bedrock inference profile (see https://docs.aws.amazon.com/bedrock/latest/userguide/inference-profiles-support.html) | |
| tpm: 20000 | |
| rpm: 5 | |
| aws_region_name: ${AWS_REGION} | |
| # ----------------------------------------------------- | |
| # Model Instances Configuration | |
| # ----------------------------------------------------- | |
| model_list: | |
| # Primary instance using default IAM role from ECS container | |
| - model_name: "claude-3-7-load-balance" | |
| litellm_params: | |
| <<: *model_defaults | |
| # Add entries for each account want to use | |
| # Each entry allows LiteLLM to assume a role in a different AWS account to access Bedrock | |
| - model_name: "claude-3-7-load-balance" | |
| litellm_params: | |
| <<: *model_defaults | |
| aws_session_name: "bedrock-ACCOUNT_2" | |
| aws_role_name: "arn:aws:iam::ACCOUNT_2:role/bedrock-caller" # Replace with the role in Account 2 to assume | |
| # ----------------------------------------------------- | |
| # Router Configuration | |
| # ----------------------------------------------------- | |
| router_settings: | |
| routing_strategy: "least-busy" # ensures optimal distribution across accounts (see https://docs.litellm.ai/docs/routing) | |
| health_check_interval: 30 | |
| timeout: 45 | |
| retries: 3 | |
| retry_after: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment