Merge remote-tracking branch 'origin/main' into api_updates_1

This commit is contained in:
Ashwin Bharambe 2024-08-28 16:08:06 -07:00
commit a23a6ab95b
5 changed files with 364 additions and 0 deletions

View file

@ -44,4 +44,13 @@ def available_inference_providers() -> List[ProviderSpec]:
module="llama_toolchain.inference.fireworks",
config_class="llama_toolchain.inference.fireworks.FireworksImplConfig",
),
InlineProviderSpec(
api=Api.inference,
provider_id="together",
pip_packages=[
"together",
],
module="llama_toolchain.inference.together",
config_class="llama_toolchain.inference.together.TogetherImplConfig",
),
]