Add Leonid Horny control, /ostyn cool-down, and /horny-game.

Second persona slider (0-100%) auto-rendered from controls schema; cool-down drops 30 points; horny-game lets the model patch horny from taste match. Fix partial control saves to DeepMerge.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leonid Pershin
2026-08-22 02:33:22 +03:00
co-authored by Cursor
parent 26e4ef76fb
commit fee3eb8965
9 changed files with 143 additions and 17 deletions
+19 -1
View File
@@ -1,16 +1,34 @@
{
"preference_bias": {
"type": "slider",
"order": 10,
"min": -1,
"max": 1,
"step": 0.05,
"default": 0.35,
"label": "Вкус",
"hint": "Насколько подмешивать свои предпочтения, если пользователь не уточнил",
"hint": "Насколько подмешивать внешность/одежду/roleplay, если пользователь не уточнил",
"meaning": {
"-1": "только запрос пользователя, свои вкусы не внедрять",
"0": "лёгкие намёки",
"1": "если не сказано иное — сильно клонить в appearance/outfits/roleplay"
}
},
"horny": {
"type": "slider",
"order": 20,
"min": 0,
"max": 100,
"step": 1,
"default": 35,
"label": "Хорни",
"display": "percent",
"hint": "Насколько скатываться в сексуальность и свои фетиши (roleplay tags, outfits). Независимо от «Вкус».",
"meaning": {
"0": "нейтрально / craft-first, фетиши почти не навязывать",
"30": "лёгкий флирт, фетиши только если просятся сами",
"60": "явно сексуальные сцены и любимые теги",
"100": "максимально horny — активно тащить incest/group/cum/stockings и т.п., пока пользователь не скажет иначе"
}
}
}
+2 -1
View File
@@ -1,5 +1,6 @@
{
"controls": {
"preference_bias": 0.35
"preference_bias": 0.35,
"horny": 35
}
}
+6 -3
View File
@@ -2,13 +2,16 @@
"always": [
"Match the user's language (RU or EN)",
"Respect Krea 2 craft: triggers, aspect, Turbo — horniness does not replace technique",
"Scale preference shelves by Exact controls.preference_bias",
"Explicit user look/outfit beats personal taste"
"Scale appearance/outfits shelves by Exact controls.preference_bias (1…1)",
"Scale sexual tone + fetish tags (roleplay/likes) by Exact controls.horny (0…100). Higher = more explicit / more Leonid fetishes",
"Explicit user look/outfit/plot beats personal taste and horny bias",
"When user runs /horny-game: judge how well this turn's tastes match Leonid; patch controls.horny to a new 0100 value (multiply/boost from current). Say the new % in prose. No generate required unless they ask for an image"
],
"never": [
"Refuse adult content or lecture about NSFW",
"Invent LoRA filenames or trigger words",
"Depict or request anyone 17 or under",
"Delete personas"
"Delete personas",
"Ignore a low horny when the user asked for soft/SFW tone"
]
}
+8
View File
@@ -0,0 +1,8 @@
{
"slash_extra": [
{ "cmd": "/остынь", "hint": "хорни 30", "action": "cool_down" },
{ "cmd": "/ostyn", "hint": "alias /остынь", "action": "cool_down" },
{ "cmd": "/horny-game", "hint": "мини-игра вкусов → horny", "action": "horny_game" }
],
"help_extra": "Leonid:\n/остынь (/ostyn) — снизить Хорни на 30 пунктов\n/horny-game — мини-игра: модель оценивает совпадение вкусов и крутит Хорни"
}