From 23f0d6662da8c04da0794411aebd0c4e9a22a808 Mon Sep 17 00:00:00 2001 From: ned Date: Wed, 14 Jun 2023 20:44:00 +0200 Subject: [PATCH] reorganize folders --- bot/openai_helper.py | 2 +- {plugins => bot/plugins}/weather.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {plugins => bot/plugins}/weather.py (100%) diff --git a/bot/openai_helper.py b/bot/openai_helper.py index b94ab0a..febf1ec 100644 --- a/bot/openai_helper.py +++ b/bot/openai_helper.py @@ -14,7 +14,7 @@ from calendar import monthrange from tenacity import retry, stop_after_attempt, wait_fixed, retry_if_exception_type -from bot.functions import get_functions_specs, call_function +from functions import get_functions_specs, call_function # Models can be found here: https://platform.openai.com/docs/models/overview GPT_3_MODELS = ("gpt-3.5-turbo", "gpt-3.5-turbo-0301", "gpt-3.5-turbo-0613") diff --git a/plugins/weather.py b/bot/plugins/weather.py similarity index 100% rename from plugins/weather.py rename to bot/plugins/weather.py