Add configurable AI operator persona

This commit is contained in:
Magzhan Zhumabayev
2026-05-11 17:37:26 +05:00
parent 67a0255c0d
commit ce3ba270aa
11 changed files with 473 additions and 19 deletions
@@ -0,0 +1,12 @@
CREATE TABLE IF NOT EXISTS ai_operator_settings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
settings_key TEXT NOT NULL UNIQUE,
config_json TEXT NOT NULL DEFAULT '{}',
updated_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_ai_operator_settings_key
ON ai_operator_settings(settings_key);
CREATE INDEX IF NOT EXISTS idx_ai_operator_settings_updated_at
ON ai_operator_settings(updated_at);