From e59dae8fb95793102a3c5d02f3d07118842e87d0 Mon Sep 17 00:00:00 2001 From: ShubhamSaboo Date: Wed, 16 Oct 2024 20:59:36 -0500 Subject: [PATCH] updated to gpt-4o --- chat_with_youtube_videos/chat_youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat_with_youtube_videos/chat_youtube.py b/chat_with_youtube_videos/chat_youtube.py index 61bbd7d..7246e46 100644 --- a/chat_with_youtube_videos/chat_youtube.py +++ b/chat_with_youtube_videos/chat_youtube.py @@ -7,7 +7,7 @@ from embedchain import App def embedchain_bot(db_path, api_key): return App.from_config( config={ - "llm": {"provider": "openai", "config": {"model": "gpt-4-turbo", "temperature": 0.5, "api_key": api_key}}, + "llm": {"provider": "openai", "config": {"model": "gpt-4o", "temperature": 0.5, "api_key": api_key}}, "vectordb": {"provider": "chroma", "config": {"dir": db_path}}, "embedder": {"provider": "openai", "config": {"api_key": api_key}}, }