diff --git a/pyproject.toml b/pyproject.toml index c3e9dbc..a34c751 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "superagent-py" -version = "v0.1.71" +version = "v0.1.72" description = "" readme = "README.md" authors = [] diff --git a/src/superagent/core/client_wrapper.py b/src/superagent/core/client_wrapper.py index 7e86d39..0d37db3 100644 --- a/src/superagent/core/client_wrapper.py +++ b/src/superagent/core/client_wrapper.py @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "superagent-py", - "X-Fern-SDK-Version": "v0.1.71", + "X-Fern-SDK-Version": "v0.1.72", } token = self._get_token() if token is not None: diff --git a/src/superagent/types/llm_model.py b/src/superagent/types/llm_model.py index f78c860..ebae952 100644 --- a/src/superagent/types/llm_model.py +++ b/src/superagent/types/llm_model.py @@ -14,6 +14,7 @@ class LlmModel(str, enum.Enum): GPT_3_5_TURBO_16_K_0613 = "GPT_3_5_TURBO_16K_0613" GPT_3_5_TURBO_0613 = "GPT_3_5_TURBO_0613" GPT_3_5_TURBO_1106 = "GPT_3_5_TURBO_1106" + GPT_3_5_TURBO_0125 = "GPT_3_5_TURBO_0125" GPT_4_0613 = "GPT_4_0613" GPT_4_32_K_0613 = "GPT_4_32K_0613" GPT_4_1106_PREVIEW = "GPT_4_1106_PREVIEW" @@ -26,6 +27,7 @@ def visit( gpt_3_5_turbo_16_k_0613: typing.Callable[[], T_Result], gpt_3_5_turbo_0613: typing.Callable[[], T_Result], gpt_3_5_turbo_1106: typing.Callable[[], T_Result], + gpt_3_5_turbo_0125: typing.Callable[[], T_Result], gpt_4_0613: typing.Callable[[], T_Result], gpt_4_32_k_0613: typing.Callable[[], T_Result], gpt_4_1106_preview: typing.Callable[[], T_Result], @@ -39,6 +41,8 @@ def visit( return gpt_3_5_turbo_0613() if self is LlmModel.GPT_3_5_TURBO_1106: return gpt_3_5_turbo_1106() + if self is LlmModel.GPT_3_5_TURBO_0125: + return gpt_3_5_turbo_0125() if self is LlmModel.GPT_4_0613: return gpt_4_0613() if self is LlmModel.GPT_4_32_K_0613: