update starter

This commit is contained in:
Hardik Shah 2025-07-09 17:40:21 -07:00
parent 7915551eee
commit 0369dd4191
44 changed files with 351 additions and 670 deletions

View file

@ -65,9 +65,10 @@ class CerebrasInferenceAdapter(
)
self.config = config
api_key = self.config.api_key.get_secret_value() if self.config.api_key else ""
self.client = AsyncCerebras(
base_url=self.config.base_url,
api_key=self.config.api_key.get_secret_value(),
api_key=api_key,
)
async def initialize(self) -> None: