From 9198c5a0572c6749a6f13653ad80a31462a2000c Mon Sep 17 00:00:00 2001 From: DylanAlloy Date: Wed, 20 Dec 2023 14:49:58 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20fix(refactor):=20org?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- magnet/ron/llm.py | 2 +- magnet/ron/{ => utils}/huggingface.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename magnet/ron/{ => utils}/huggingface.py (100%) diff --git a/magnet/ron/llm.py b/magnet/ron/llm.py index 6d03ce3..2c565fe 100644 --- a/magnet/ron/llm.py +++ b/magnet/ron/llm.py @@ -1,5 +1,5 @@ from magnet.utils import _f -from .huggingface import InferenceAPI +from .utils.huggingface import InferenceAPI from .utils.prompts import * import requests, json diff --git a/magnet/ron/huggingface.py b/magnet/ron/utils/huggingface.py similarity index 100% rename from magnet/ron/huggingface.py rename to magnet/ron/utils/huggingface.py