Bump version to 0.0.24 (#94)

Co-authored-by: Ashwin Bharambe <ashwin.bharambe@gmail.com>
This commit is contained in:
poegej 2024-09-25 09:31:12 -07:00 committed by GitHub
parent ed8d10775a
commit 95abbf576b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 998 additions and 0 deletions

View file

@ -75,4 +75,15 @@ def available_providers() -> List[ProviderSpec]:
header_extractor_class="llama_stack.providers.adapters.inference.together.TogetherHeaderExtractor",
),
),
remote_provider_spec(
api=Api.inference,
adapter=AdapterSpec(
adapter_id="bedrock",
pip_packages=[
"boto3",
],
module="llama_stack.providers.adapters.inference.bedrock",
config_class="llama_stack.providers.adapters.inference.bedrock.BedrockConfig",
),
),
]