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", )