From ab2e31217b6487a5d7d69f9034d1044f5fbcf473 Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Mon, 27 Nov 2023 17:07:30 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20local=20user?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit now increased deault limit and added gpt-4 --- scripts/tables.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/tables.sql b/scripts/tables.sql index 65dc14ba8ffd..15d80f6c6f63 100644 --- a/scripts/tables.sql +++ b/scripts/tables.sql @@ -247,10 +247,10 @@ CREATE TABLE IF NOT EXISTS migrations ( CREATE TABLE IF NOT EXISTS user_settings ( user_id UUID PRIMARY KEY, - models JSONB DEFAULT '["gpt-3.5-turbo","huggingface/mistralai/Mistral-7B-Instruct-v0.1"]'::jsonb, - daily_chat_credit INT DEFAULT 20, - max_brains INT DEFAULT 3, - max_brain_size INT DEFAULT 10000000 + models JSONB DEFAULT '["gpt-3.5-turbo","gpt-4"]'::jsonb, + daily_chat_credit INT DEFAULT 300, + max_brains INT DEFAULT 30, + max_brain_size INT DEFAULT 100000000 ); -- knowledge table