From 7dd88b68fbeaf4a148036dcbcc16ab1f7101460d Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 18 Dec 2023 12:19:34 +0900 Subject: [PATCH] Update client.py (#934) overriden -> overridden --- autogen/oai/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen/oai/client.py b/autogen/oai/client.py index a4714075b0f9..14abb63ad6c8 100644 --- a/autogen/oai/client.py +++ b/autogen/oai/client.py @@ -191,7 +191,7 @@ def _construct_create_params(self, create_config: Dict, extra_kwargs: Dict) -> D def create(self, **config): """Make a completion for a given config using openai's clients. Besides the kwargs allowed in openai's client, we allow the following additional kwargs. - The config in each client will be overriden by the config. + The config in each client will be overridden by the config. Args: - context (Dict | None): The context to instantiate the prompt or messages. Default to None.