remove func arg

This commit is contained in:
Cyberes 2024-11-16 13:34:31 -07:00
parent b80c42ef1e
commit a721a1def0
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class AnthropicApiClient(ApiClient):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def _create_client(self, base_url: str = None):
def _create_client(self):
return AsyncAnthropic(
api_key=self._api_key,
base_url=self._api_base