From 420a834e7f64c759289bee1fdf0be2fbda1b41e8 Mon Sep 17 00:00:00 2001 From: teawhale Date: Fri, 27 Sep 2024 19:11:06 +0000 Subject: [PATCH] Test my first pr --- vizro-ai/src/vizro_ai/_llm_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vizro-ai/src/vizro_ai/_llm_models.py b/vizro-ai/src/vizro_ai/_llm_models.py index 74ba126db..553ebb4ef 100644 --- a/vizro-ai/src/vizro_ai/_llm_models.py +++ b/vizro-ai/src/vizro_ai/_llm_models.py @@ -88,6 +88,6 @@ def _get_model_name(model: BaseChatModel) -> str: if __name__ == "__main__": - llm_chat_openai = _get_llm_model(model="gpt-3.5-turbo") + llm_chat_openai = _get_llm_model(model="gpt-4o-mini") print(repr(llm_chat_openai)) # noqa: T201 print(llm_chat_openai.model_name) # noqa: T201