remove SambaNovaInferenceAdapter's redundant initialize and shutdown methods

This commit is contained in:
Matthew Farrellee 2025-07-31 15:42:20 -05:00
parent d6e0ee979c
commit 633f87da4f

View file

@ -29,9 +29,3 @@ class SambaNovaInferenceAdapter(LiteLLMOpenAIMixin):
download_images=True, # SambaNova requires base64 image encoding
json_schema_strict=False, # SambaNova doesn't support strict=True yet
)
async def initialize(self):
await super().initialize()
async def shutdown(self):
await super().shutdown()