diff --git a/__init__.py b/__init__.py index e9500b3..37e4c11 100644 --- a/__init__.py +++ b/__init__.py @@ -12,5 +12,5 @@ """ # Engines -from src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import -from src.openai_api.dalle import DALLE # pylint: disable=unused-import +from .src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import +from .src.openai_api.dalle import DALLE # pylint: disable=unused-import diff --git a/pyproject.toml b/pyproject.toml index 53cc4ca..e2920e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "openai_api" -version = "0.1.0" +version = "0.0.1" authors = [ { name="Iliya Vereshchagin", email="i.vereshchagin@gmail.com" }, ] diff --git a/setup.cfg b/setup.cfg index 433859a..e5ec8f0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = openai_api -version = attr: openai_api.0.1.0 +version = attr: openai_api.0.0.1 author = Iliya Vereshchagin author_email = i.vereshchagin@gmail.com url = https://github.com/wwakabobik/openai_api diff --git a/src/openai_api/__init__.py b/src/openai_api/__init__.py index 47a4319..afd6019 100644 --- a/src/openai_api/__init__.py +++ b/src/openai_api/__init__.py @@ -10,5 +10,5 @@ Description: This file contains module init """ -from chatgpt import ChatGPT -from dalle import DALLE +from .chatgpt import ChatGPT +from .dalle import DALLE