From e649c3bdeaaef812b7652bb99b201f73db8ad946 Mon Sep 17 00:00:00 2001 From: Anwaar Khalid Date: Sun, 14 Apr 2024 23:41:50 +0000 Subject: [PATCH] renamed unifyai to unify so that we can use import unify instead of unifyai --- unify/__init__.py | 4 ++++ {unifyai => unify}/chat.py | 0 {unifyai => unify}/clients.py | 0 {unifyai => unify}/exceptions.py | 0 {unifyai => unify}/tests.py | 0 {unifyai => unify}/utils.py | 0 unifyai/__init__.py | 4 ---- 7 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 unify/__init__.py rename {unifyai => unify}/chat.py (100%) rename {unifyai => unify}/clients.py (100%) rename {unifyai => unify}/exceptions.py (100%) rename {unifyai => unify}/tests.py (100%) rename {unifyai => unify}/utils.py (100%) delete mode 100644 unifyai/__init__.py diff --git a/unify/__init__.py b/unify/__init__.py new file mode 100644 index 0000000..b45f41a --- /dev/null +++ b/unify/__init__.py @@ -0,0 +1,4 @@ +"""Unify python module.""" + +from unify.clients import AsyncUnify, Unify # noqa: F403 +from unify.chat import ChatBot # noqa: F403 diff --git a/unifyai/chat.py b/unify/chat.py similarity index 100% rename from unifyai/chat.py rename to unify/chat.py diff --git a/unifyai/clients.py b/unify/clients.py similarity index 100% rename from unifyai/clients.py rename to unify/clients.py diff --git a/unifyai/exceptions.py b/unify/exceptions.py similarity index 100% rename from unifyai/exceptions.py rename to unify/exceptions.py diff --git a/unifyai/tests.py b/unify/tests.py similarity index 100% rename from unifyai/tests.py rename to unify/tests.py diff --git a/unifyai/utils.py b/unify/utils.py similarity index 100% rename from unifyai/utils.py rename to unify/utils.py diff --git a/unifyai/__init__.py b/unifyai/__init__.py deleted file mode 100644 index a3c295e..0000000 --- a/unifyai/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -"""Unify python module.""" - -from unifyai.clients import AsyncUnify, Unify # noqa: F403 -from unifyai.chat import ChatBot # noqa: F403