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}}, }