Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Willie Zutz 2025-07-16 23:37:23 -06:00
commit 70cdad1cd4
66 changed files with 8154 additions and 381 deletions

View file

@ -0,0 +1,8 @@
CREATE TABLE `system_prompts` (
`id` text PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`content` text NOT NULL,
`type` text DEFAULT 'system' NOT NULL,
`created_at` integer NOT NULL,
`updated_at` integer NOT NULL
);