From 22fa1d4525a6f49e8361368fbce3111ecf7183e2 Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Mon, 18 Sep 2023 15:25:38 +0200 Subject: [PATCH] Feat/theodo gpt4 (#1198) * chore(theodo): added trigger function for theodo * chore(theodo): increased brain to 100MB --- scripts/quivr_team_only/theodo_gpt4.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/quivr_team_only/theodo_gpt4.sql b/scripts/quivr_team_only/theodo_gpt4.sql index bd0e2cdf9..5b7592146 100644 --- a/scripts/quivr_team_only/theodo_gpt4.sql +++ b/scripts/quivr_team_only/theodo_gpt4.sql @@ -28,7 +28,8 @@ BEGIN UPDATE user_settings SET max_brains = 30, - max_brain_size = 10000000, + max_brain_size = 100000000, + models = NEW.models WHERE user_id = NEW.user_id; END IF;