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

This commit is contained in:
Ashwin Bharambe 2024-08-28 16:02:34 -07:00
commit d3965dd435
11 changed files with 428 additions and 3 deletions

View file

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