From 9ef6bcf3281dee92d7d4f2deecaace8713352b02 Mon Sep 17 00:00:00 2001 From: ilhooq Date: Mon, 9 Sep 2024 12:56:24 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20requ=C3=AAte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli/init_assistant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/init_assistant.php b/cli/init_assistant.php index dc8578a..ad85abb 100644 --- a/cli/init_assistant.php +++ b/cli/init_assistant.php @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS "chat_assistant" ( model VARCHAR(64) NOT NULL, system_prompt TEXT NOT NULL, temperature REAL NOT NULL DEFAULT 0, - top_p REAL NOT NULL 0, + top_p REAL NOT NULL DEFAULT 0, "default" INTEGER NOT NULL DEFAULT 0, foreign key (user_id) references "user" (id) on delete cascade on update cascade );