From 6b0c6857551a1fda013afd25b0fcec0a6804bf1b Mon Sep 17 00:00:00 2001 From: xionghuaidong Date: Fri, 22 Dec 2023 18:56:16 +0800 Subject: [PATCH] chore(nn4k): move nn4k files from python/ to python/nn4k/ --- python/nn4k/{ => nn4k}/__init__.py | 0 python/nn4k/{ => nn4k}/executor/__init__.py | 0 python/nn4k/{ => nn4k}/executor/base.py | 0 python/nn4k/{ => nn4k}/executor/deepke.py | 0 python/nn4k/{ => nn4k}/executor/hugging_face.py | 0 python/nn4k/{ => nn4k}/invoker/__init__.py | 0 python/nn4k/{ => nn4k}/invoker/base.py | 0 python/nn4k/{ => nn4k}/invoker/openai_invoker.py | 0 python/nn4k/{ => nn4k}/nnhub/__init__.py | 0 python/nn4k/{ => nn4k}/utils/__init__.py | 0 python/nn4k/{ => nn4k}/utils/config_parsing.py | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename python/nn4k/{ => nn4k}/__init__.py (100%) rename python/nn4k/{ => nn4k}/executor/__init__.py (100%) rename python/nn4k/{ => nn4k}/executor/base.py (100%) rename python/nn4k/{ => nn4k}/executor/deepke.py (100%) rename python/nn4k/{ => nn4k}/executor/hugging_face.py (100%) rename python/nn4k/{ => nn4k}/invoker/__init__.py (100%) rename python/nn4k/{ => nn4k}/invoker/base.py (100%) rename python/nn4k/{ => nn4k}/invoker/openai_invoker.py (100%) rename python/nn4k/{ => nn4k}/nnhub/__init__.py (100%) rename python/nn4k/{ => nn4k}/utils/__init__.py (100%) rename python/nn4k/{ => nn4k}/utils/config_parsing.py (100%) diff --git a/python/nn4k/__init__.py b/python/nn4k/nn4k/__init__.py similarity index 100% rename from python/nn4k/__init__.py rename to python/nn4k/nn4k/__init__.py diff --git a/python/nn4k/executor/__init__.py b/python/nn4k/nn4k/executor/__init__.py similarity index 100% rename from python/nn4k/executor/__init__.py rename to python/nn4k/nn4k/executor/__init__.py diff --git a/python/nn4k/executor/base.py b/python/nn4k/nn4k/executor/base.py similarity index 100% rename from python/nn4k/executor/base.py rename to python/nn4k/nn4k/executor/base.py diff --git a/python/nn4k/executor/deepke.py b/python/nn4k/nn4k/executor/deepke.py similarity index 100% rename from python/nn4k/executor/deepke.py rename to python/nn4k/nn4k/executor/deepke.py diff --git a/python/nn4k/executor/hugging_face.py b/python/nn4k/nn4k/executor/hugging_face.py similarity index 100% rename from python/nn4k/executor/hugging_face.py rename to python/nn4k/nn4k/executor/hugging_face.py diff --git a/python/nn4k/invoker/__init__.py b/python/nn4k/nn4k/invoker/__init__.py similarity index 100% rename from python/nn4k/invoker/__init__.py rename to python/nn4k/nn4k/invoker/__init__.py diff --git a/python/nn4k/invoker/base.py b/python/nn4k/nn4k/invoker/base.py similarity index 100% rename from python/nn4k/invoker/base.py rename to python/nn4k/nn4k/invoker/base.py diff --git a/python/nn4k/invoker/openai_invoker.py b/python/nn4k/nn4k/invoker/openai_invoker.py similarity index 100% rename from python/nn4k/invoker/openai_invoker.py rename to python/nn4k/nn4k/invoker/openai_invoker.py diff --git a/python/nn4k/nnhub/__init__.py b/python/nn4k/nn4k/nnhub/__init__.py similarity index 100% rename from python/nn4k/nnhub/__init__.py rename to python/nn4k/nn4k/nnhub/__init__.py diff --git a/python/nn4k/utils/__init__.py b/python/nn4k/nn4k/utils/__init__.py similarity index 100% rename from python/nn4k/utils/__init__.py rename to python/nn4k/nn4k/utils/__init__.py diff --git a/python/nn4k/utils/config_parsing.py b/python/nn4k/nn4k/utils/config_parsing.py similarity index 100% rename from python/nn4k/utils/config_parsing.py rename to python/nn4k/nn4k/utils/config_parsing.py