revert: Revert relative imports in scripts and fix imports in tests

This commit is contained in:
Drikus Roor
2023-04-11 20:07:40 +02:00
committed by Drikus Roor
parent 28cf7c3f83
commit f34751a0c3
7 changed files with 12 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
from .config import Config
from config import Config
cfg = Config()
from .llm_utils import create_chat_completion
from llm_utils import create_chat_completion
# This is a magic function that can do anything with no-code. See
# https://github.com/Torantulino/AI-Functions for more info.
def call_ai_function(function, args, description, model=None):