about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 c5946ed..7414ff8 100644
--- a/gn3/api/llm.py
+++ b/gn3/api/llm.py
@@ -79,7 +79,7 @@ def rating(task_id):
             with db.connection(os.path.join(current_app.config["DATA_DIR"], "/llm.db")) as conn:
                 cursor = conn.cursor()
                 create_table = """CREATE TABLE IF NOT EXISTS Rating(
-                      user_id INTEGER NOT NULL,
+                      user_id TEXT NOT NULL,
                       query TEXT NOT NULL,
                       answer TEXT NOT NULL,
                       weight INTEGER NOT NULL DEFAULT 0,