about summary refs log tree commit diff
path: root/gn3/api/llm.py
diff options
context:
space:
mode:
authorJohn Nduli2024-10-18 15:06:36 +0300
committerFrederick Muriuki Muriithi2024-10-18 09:28:40 -0500
commit86b81be8c67cf82e8f26a7f84cbdc5df7198e214 (patch)
tree7e27fe0d5876d6c473b61bcacf5e73a9a8d83a39 /gn3/api/llm.py
parent27531c0a1350097ca36a555b8546bc282948de04 (diff)
downloadgenenetwork3-86b81be8c67cf82e8f26a7f84cbdc5df7198e214.tar.gz
refactor: replace gn3.auth.db with gn3.sqlite_db_utils and drop all refs to gn3.auth
Diffstat (limited to 'gn3/api/llm.py')
-rw-r--r--gn3/api/llm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/api/llm.py b/gn3/api/llm.py
index 9a44440..d6cd737 100644
--- a/gn3/api/llm.py
+++ b/gn3/api/llm.py
@@ -12,7 +12,7 @@ from gn3.llms.process import get_gnqa
 from gn3.llms.errors import LLMError
 
 from gn3.oauth2.authorisation import require_token
-from gn3.auth import db
+from gn3 import sqlite_db_utils as db
 
 
 gnqa = Blueprint("gnqa", __name__)