From 112018dc0c0b762512c61626c6297ea326bf09a1 Mon Sep 17 00:00:00 2001 From: Zoltan Csaki Date: Mon, 2 Dec 2024 08:58:36 -0800 Subject: [PATCH] fix linting error --- aisuite/providers/sambanova_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aisuite/providers/sambanova_provider.py b/aisuite/providers/sambanova_provider.py index dbf0fda2..75a97311 100644 --- a/aisuite/providers/sambanova_provider.py +++ b/aisuite/providers/sambanova_provider.py @@ -15,7 +15,7 @@ def __init__(self, **config): raise ValueError( "Sambanova API key is missing. Please provide it in the config or set the SAMBANOVA_API_KEY environment variable." ) - + config["base_url"] = "https://api.sambanova.ai/v1/" # Pass the entire config to the OpenAI client constructor self.client = OpenAI(**config)