初始化

This commit is contained in:
Ran
2026-08-25 17:59:42 +08:00
commit 4b7380dd9b
408 changed files with 327400 additions and 0 deletions
@@ -0,0 +1,25 @@
INSERT INTO prompts (id, name, type, content, scope, owner_user_id)
VALUES (
'f06daef4-027c-4aec-97e2-2ef7eafe57b8',
'默认剧本反推提示词',
'剧本反推',
$prompt$请一次性输出完整剧本
1.
2.
3. 使
4. 使
5.
6. JSON{"script":"完整剧本"}
$prompt$,
'system',
NULL
)
ON CONFLICT (id) DO UPDATE SET
name = EXCLUDED.name,
type = EXCLUDED.type,
content = EXCLUDED.content,
scope = EXCLUDED.scope,
owner_user_id = EXCLUDED.owner_user_id,
deleted_at = NULL,
updated_at = CURRENT_TIMESTAMP;