Merge branch 'main' into add-nim-completion-api

This commit is contained in:
Matthew Farrellee 2024-12-11 13:07:23 -05:00
commit df3c239573
199 changed files with 7739 additions and 814 deletions

View file

@ -35,7 +35,9 @@ class NVIDIAConfig(BaseModel):
"""
url: str = Field(
default="https://integrate.api.nvidia.com",
default_factory=lambda: os.getenv(
"NVIDIA_BASE_URL", "https://integrate.api.nvidia.com"
),
description="A base url for accessing the NVIDIA NIM",
)
api_key: Optional[str] = Field(