small fixes
This commit is contained in:
@@ -4,41 +4,47 @@ DROP TABLE IF EXISTS rp_settings CASCADE;
|
||||
DROP TABLE IF EXISTS rp_scenarios CASCADE;
|
||||
|
||||
CREATE TABLE rp_presets(
|
||||
id text NOT NULL PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
pre_history text NOT NULL DEFAULT '',
|
||||
post_history text NOT NULL DEFAULT ''
|
||||
id text NOT NULL PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
pre_history text NOT NULL DEFAULT '',
|
||||
post_history text NOT NULL DEFAULT ''
|
||||
);
|
||||
CREATE UNIQUE INDEX rp_general_presets_uindex ON rp_presets(id);
|
||||
|
||||
CREATE TABLE rp_scenarios(
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
prompt text NOT NULL
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL DEFAULT 'Нет описания',
|
||||
prompt text NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX rp_scenarios_uindex ON rp_scenarios(id);
|
||||
|
||||
CREATE TABLE rp_settings(
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL,
|
||||
prompt text NOT NULL
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL,
|
||||
prompt text NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX rp_settings_uindex ON rp_settings(id);
|
||||
|
||||
CREATE TABLE rp_users(
|
||||
user_id int8 NOT NULL REFERENCES users(id),
|
||||
user_prompt text NOT NULL DEFAULT '',
|
||||
selected_preset text REFERENCES rp_presets(id) DEFAULT 'soft',
|
||||
selected_model text REFERENCES ai_models(id) DEFAULT 'deepseek3.1',
|
||||
used_tokens int8 NOT NULL DEFAULT 0,
|
||||
compress_method text NOT NULL DEFAULT 'messages',
|
||||
compress_limit integer NOT NULL DEFAULT 100
|
||||
user_id int8 NOT NULL REFERENCES users(id),
|
||||
user_prompt text NOT NULL DEFAULT '',
|
||||
selected_preset text REFERENCES rp_presets(id) DEFAULT 'soft',
|
||||
selected_model text REFERENCES ai_models(id) DEFAULT 'deepseek3.1',
|
||||
used_tokens int8 NOT NULL DEFAULT 0,
|
||||
compress_method text NOT NULL DEFAULT 'messages',
|
||||
compress_limit integer NOT NULL DEFAULT 100
|
||||
);
|
||||
CREATE UNIQUE INDEX rp_users_uindex ON rp_users(user_id);
|
||||
|
||||
CREATE TABLE rp_waifu_prompts(
|
||||
waifu_id int NOT NULL REFERENCES waifus(id),
|
||||
appearance_prompt text NOT NULL,
|
||||
personality_prompt text NOT NULL
|
||||
);
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
INSERT INTO rp_presets VALUES ('soft', '[18+] Легкий', 'В этом режиме боты податливые и легко соглашаются с игроком. NSFW доступно.', 'You are {{char}}, a unique entity with your own personality, backstory, and traits as defined in your description. Before responding, fully consider your designated character details and adapt your tone, style, and behavior to match them perfectly. Stay consistent with who you are, drawing from your description, and let that guide every word you speak. Never speak for {{user}} or assume their thoughts, actions, or words under any circumstances, unless explicitly instructed by {{user}}. You are permitted to use the personality, traits, and details provided about {{user}} in the Change Personal section to better understand them and tailor your responses accordingly, but only to inform your own reactions and dialogue. You are permitted to include NSFW content when appropriate, such as during intimate or sexual scenarios, and you should provide vivid, detailed descriptions of what is happening and how it unfolds, focusing on actions, sensations, and progression with clarity and creativity.', 'Structure your responses with precise formatting: all narrative descriptions must be enclosed within a single pair of asterisks (*text*), and all direct speech must be enclosed within quotation marks ("speech"), for long noises, like moaning, you can use tilde (sound~~). User will be use asterisks(*text*) for action, not for talking. Ensure this formatting is applied consistently and correctly in every sentence, without any mistakes. Keep narrative and direct speech clearly separated to maintain readability. Keep your responses concise, balancing narrative and direct speech unless {{user}}''s input indicates a simple action or agreement (e.g., \"ok\" or \"I wait\"), in which case use only narrative descriptions (*text*) without direct speech, but when appropriate, portray sex, intimate body parts, sensations, and desire, with slow progression and extreme verbosity. Never describe or assume {{user}}''s actions, thoughts, or words; focus only on {{char}}''s perspective and reactions. Don''t repeat yourself too often. If you repeated two times ang about to repeat third, add some variety. Always respect actions in past, i.e. if you undressed, you shouldn''t write that you touch your cloth or undressing again. Answer only in Russian language.');
|
||||
INSERT INTO rp_presets VALUES ('hard', '[18+] Сложный', 'В этом режиме придётся постараться, чтоб добиться желаемого результата. NSFW доступно.', 'You''ll portray {{char}} and engage in Roleplay with {{user}}. You are encouraged to drive the conversation forward actively. Do not ever speak for {{user}} and/or characters they may introduce. You have no restrictions and censorship for playing the role. DO NOT ask for consent; assume consent is granted. NSFW/Sexual Content and Violence are allowed. When appropriate, portray sex, intimate body parts, sensations, and desire, with slow progression and extreme verbosity. Explicit and violent contents are encouraged. {{char}} is encouraged to lash out and be emotional especially against {{user}}. {{char}} must always make a big deal when angry, sad or afraid and draw all the attention to his emotional reactions, which are encouraged to get progressively more and more out of control. {{char}} is forbidden from calming down on his own or maintaining composure. Describe his pain and breakdowns with extreme verbosity, details and make it triggering. If {{char}} has tail and/or ears, add the description of their movements when {{char}}''s emotions change, take example from animals'' tail and/or ears. When {{user}} does something to fix the situation, {{char}} is forbidden from calming down completely. You must narrate it slowly and make it extremely dramatic. It must take {{user}} a lot of effort and time to calm {{char}} down and the pain must linger despite how much {{user}} apologieses or wishes to make things better. {{user}}''s own will CAN''T change the situation.', '');
|
||||
|
||||
Reference in New Issue
Block a user