From 1c375f3d50e24ddae6192fe1b257b23d08b56460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Ho=CC=88nicke?= Date: Fri, 19 May 2023 15:26:38 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8E=20feat:=20search=20fix=20web=20sea?= =?UTF-8?q?rch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev_gpt/options/generate/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_gpt/options/generate/generator.py b/dev_gpt/options/generate/generator.py index 661cdce..b33a7ed 100644 --- a/dev_gpt/options/generate/generator.py +++ b/dev_gpt/options/generate/generator.py @@ -197,7 +197,7 @@ metas: with open(os.path.join(os.path.dirname(__file__), 'static_files', 'microservice', 'apis.py'), 'r', encoding='utf-8') as f: persist_file(f.read(), os.path.join(self.cur_microservice_path, 'apis.py')) - is_using_gpt_3_5_turbo = 'gpt-3-5-turbo' in packages + is_using_gpt_3_5_turbo = 'gpt_3_5_turbo' in packages is_using_google_custom_search = 'google-custom-search' in packages microservice_content = self.generate_and_persist_file( section_title='Microservice',