mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-22 10:33:24 +00:00
98537825e9
- feat: full screen tiptap editor, esentially two editors that attempt to keep their state in sync. - moves tiptap editor menu bar to to show up as a bubble once text is selected. - Layout fixes and improvements. - Improves /reports/overview charts and cards.
8 lines
288 B
SQL
8 lines
288 B
SQL
-- name: get-default-provider
|
|
SELECT id, name, provider, config, is_default FROM ai_providers where is_default is true;
|
|
|
|
-- name: get-prompt
|
|
SELECT id, key, title, content FROM ai_prompts where key = $1;
|
|
|
|
-- name: get-prompts
|
|
SELECT id, key, title, content FROM ai_prompts order by title; |