Correction requête

This commit is contained in:
Sylvain Philip 2024-09-09 12:56:24 +02:00
parent 9ef871da1f
commit 9ef6bcf328

View File

@ -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
);