From 96d4e7241cbc3c54450d535c87c9d0b5e9d31689 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Tue, 29 Apr 2025 10:05:08 -0700 Subject: [PATCH] Update config.py --- .../providers/remote/inference/llama_openai_compat/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/providers/remote/inference/llama_openai_compat/config.py b/llama_stack/providers/remote/inference/llama_openai_compat/config.py index c6a5946dd..e984ec803 100644 --- a/llama_stack/providers/remote/inference/llama_openai_compat/config.py +++ b/llama_stack/providers/remote/inference/llama_openai_compat/config.py @@ -12,9 +12,9 @@ from llama_stack.schema_utils import json_schema_type class LlamaProviderDataValidator(BaseModel): - fireworks_api_key: Optional[str] = Field( + llama_api_key: Optional[str] = Field( default=None, - description="API key for Llama API models", + description="API key for api.llama models", )