Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions redhat-distribution/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ distribution_spec:
providers:
inference:
- remote::vllm
- remote::bedrock
- inline::sentence-transformers
vector_io:
- inline::milvus
Expand Down
10 changes: 10 additions & 0 deletions redhat-distribution/run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ providers:
max_tokens: ${env.VLLM_MAX_TOKENS:=4096}
api_token: ${env.VLLM_API_TOKEN:=fake}
tls_verify: ${env.VLLM_TLS_VERIFY:=true}
- provider_id: bedrock-inference
provider_type: remote::bedrock
config:
aws_access_key_id: ${env.AWS_ACCESS_KEY_ID:=}
aws_secret_access_key: ${env.AWS_SECRET_ACCESS_KEY:=}
aws_session_token: ${env.AWS_SESSION_TOKEN:=}
region: ${env.AWS_REGION:=us-east-1}
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not present downstream please remove the default var. default is None in llama-stack

connect_timeout: ${env.AWS_CONNECT_TIMEOUT:=60}
read_timeout: ${env.AWS_READ_TIMEOUT:=60}
session_ttl: ${env.AWS_SESSION_TTL:=3600}
- provider_id: sentence-transformers
provider_type: inline::sentence-transformers
config: {}
Expand Down
Loading