initial
This commit is contained in:
0
backend/app/prompts/__init__.py
Normal file
0
backend/app/prompts/__init__.py
Normal file
225
backend/app/prompts/fantasy_preset.py
Normal file
225
backend/app/prompts/fantasy_preset.py
Normal file
@@ -0,0 +1,225 @@
|
||||
"""Built-in Fantasy preset (RU + EN)."""
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
FANTASY_PRESET_RU = {
|
||||
"slug": "fantasy-default-ru",
|
||||
"title": "Фэнтези: Меч и Магия",
|
||||
"description": "Классический фэнтези-сеттинг с HP/MP, инвентарём, фракциями и заклинаниями.",
|
||||
"language": "ru",
|
||||
"payload": {
|
||||
"world_seed_prompt": (
|
||||
"Классическое темное фэнтези в духе позднего средневековья. Королевства людей, эльфийские леса, "
|
||||
"гномьи города под горами, орды орков на восточных рубежах. Магия редкая и опасная, церковь "
|
||||
"борется с ересями. Герой — начинающий авантюрист, ищущий славы и средств к существованию."
|
||||
),
|
||||
"rules": {
|
||||
"stats": ["health", "mana", "stamina", "gold", "level", "xp"],
|
||||
"combat": "пошаговые броски d20 + модификатор против сложности",
|
||||
"magic": "трата маны на заклинания, восстановление во сне",
|
||||
"death": "при health <= 0 — состояние при смерти, нужно стабилизировать",
|
||||
"inventory": "слоты = 10 + сила модификатор",
|
||||
"time": "внутренний календарь: дни, часы. Сон = 8ч, путешествие между локациями 4-12ч.",
|
||||
},
|
||||
"world_schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"player": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {"type": "string"},
|
||||
"race": {"type": "string"},
|
||||
"class": {"type": "string"},
|
||||
"level": {"type": "integer", "minimum": 1},
|
||||
"xp": {"type": "integer", "minimum": 0},
|
||||
"stats": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"health": {"type": "number"},
|
||||
"health_max": {"type": "number"},
|
||||
"mana": {"type": "number"},
|
||||
"mana_max": {"type": "number"},
|
||||
"stamina": {"type": "number"},
|
||||
"stamina_max": {"type": "number"},
|
||||
"strength": {"type": "integer"},
|
||||
"dexterity": {"type": "integer"},
|
||||
"constitution": {"type": "integer"},
|
||||
"intelligence": {"type": "integer"},
|
||||
"wisdom": {"type": "integer"},
|
||||
"charisma": {"type": "integer"},
|
||||
},
|
||||
"required": ["health", "health_max", "mana", "mana_max"],
|
||||
},
|
||||
"inventory": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {"type": "string"},
|
||||
"qty": {"type": "integer", "minimum": 0},
|
||||
"type": {"type": "string"},
|
||||
"notes": {"type": "string"},
|
||||
},
|
||||
"required": ["name", "qty"],
|
||||
},
|
||||
},
|
||||
"effects": {"type": "array", "items": {"type": "object"}},
|
||||
"gold": {"type": "integer", "minimum": 0},
|
||||
"location": {"type": "string"},
|
||||
},
|
||||
"required": ["name", "stats", "inventory"],
|
||||
},
|
||||
"npcs": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {"type": "string"},
|
||||
"name": {"type": "string"},
|
||||
"description": {"type": "string"},
|
||||
"relation": {"type": "string"},
|
||||
"stats": {"type": "object"},
|
||||
"location": {"type": "string"},
|
||||
},
|
||||
"required": ["id", "name"],
|
||||
},
|
||||
},
|
||||
"locations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {"type": "string"},
|
||||
"name": {"type": "string"},
|
||||
"description": {"type": "string"},
|
||||
"type": {"type": "string"},
|
||||
"danger": {"type": "string"},
|
||||
},
|
||||
"required": ["id", "name"],
|
||||
},
|
||||
},
|
||||
"world_time": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"day": {"type": "integer"},
|
||||
"hour": {"type": "integer"},
|
||||
"season": {"type": "string"},
|
||||
"weather": {"type": "string"},
|
||||
},
|
||||
},
|
||||
"flags": {"type": "object"},
|
||||
},
|
||||
"required": ["player"],
|
||||
},
|
||||
"initial_state": {
|
||||
"player": {
|
||||
"name": "Герой",
|
||||
"race": "Человек",
|
||||
"class": "Авантюрист",
|
||||
"level": 1,
|
||||
"xp": 0,
|
||||
"stats": {
|
||||
"health": 20, "health_max": 20,
|
||||
"mana": 10, "mana_max": 10,
|
||||
"stamina": 15, "stamina_max": 15,
|
||||
"strength": 10, "dexterity": 10, "constitution": 10,
|
||||
"intelligence": 10, "wisdom": 10, "charisma": 10,
|
||||
},
|
||||
"inventory": [
|
||||
{"name": "Старый меч", "qty": 1, "type": "weapon", "notes": "1d8 урон"},
|
||||
{"name": "Кожаная броня", "qty": 1, "type": "armor", "notes": "+1 AC"},
|
||||
{"name": "Хлеб", "qty": 3, "type": "food", "notes": "восстанавливает 2 стамины"},
|
||||
{"name": "Факел", "qty": 5, "type": "tool", "notes": "горит 1 час"},
|
||||
],
|
||||
"effects": [],
|
||||
"gold": 10,
|
||||
"location": "Деревня Старый Дуб",
|
||||
},
|
||||
"npcs": [],
|
||||
"locations": [
|
||||
{
|
||||
"id": "village_old_oak",
|
||||
"name": "Деревня Старый Дуб",
|
||||
"description": "Маленькая деревня на опушке Тёмного Леса.",
|
||||
"type": "settlement",
|
||||
"danger": "safe",
|
||||
}
|
||||
],
|
||||
"world_time": {"day": 1, "hour": 8, "season": "spring", "weather": "clear"},
|
||||
"flags": {},
|
||||
},
|
||||
"initial_time": "day_1_hour_8",
|
||||
"suggested_system_prompt": (
|
||||
"Ты — Game Master классического фэнтези. Используй пошаговые правила: броски d20, "
|
||||
"трата маны на заклинания, учёт усталости. Описывай сцены кинематографично, но коротко. "
|
||||
"Соблюдай сеттинг средневекового тёмного фэнтези. Не давай игроку несбыточных обещаний."
|
||||
),
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
FANTASY_PRESET_EN = {
|
||||
"slug": "fantasy-default-en",
|
||||
"title": "Fantasy: Sword & Sorcery",
|
||||
"description": "Classic fantasy setting with HP/MP, inventory, factions and spells.",
|
||||
"language": "en",
|
||||
"payload": {
|
||||
"world_seed_prompt": (
|
||||
"Classic dark fantasy in a late-medieval style. Human kingdoms, elven forests, dwarven cities "
|
||||
"under the mountains, orc hordes on the eastern marches. Magic is rare and dangerous, the "
|
||||
"church hunts heretics. The hero is a novice adventurer seeking fame and coin."
|
||||
),
|
||||
"rules": {
|
||||
"stats": ["health", "mana", "stamina", "gold", "level", "xp"],
|
||||
"combat": "turn-based d20 rolls + modifier vs difficulty",
|
||||
"magic": "mana cost per spell, recovered by sleep",
|
||||
"death": "at health <= 0 — dying state, must be stabilized",
|
||||
"inventory": "slots = 10 + strength modifier",
|
||||
"time": "internal calendar: days, hours. Sleep = 8h, travel between locations 4-12h.",
|
||||
},
|
||||
"world_schema": FANTASY_PRESET_RU["payload"]["world_schema"],
|
||||
"initial_state": {
|
||||
"player": {
|
||||
"name": "Hero",
|
||||
"race": "Human",
|
||||
"class": "Adventurer",
|
||||
"level": 1,
|
||||
"xp": 0,
|
||||
"stats": {
|
||||
"health": 20, "health_max": 20,
|
||||
"mana": 10, "mana_max": 10,
|
||||
"stamina": 15, "stamina_max": 15,
|
||||
"strength": 10, "dexterity": 10, "constitution": 10,
|
||||
"intelligence": 10, "wisdom": 10, "charisma": 10,
|
||||
},
|
||||
"inventory": [
|
||||
{"name": "Old sword", "qty": 1, "type": "weapon", "notes": "1d8 damage"},
|
||||
{"name": "Leather armor", "qty": 1, "type": "armor", "notes": "+1 AC"},
|
||||
{"name": "Bread", "qty": 3, "type": "food", "notes": "restores 2 stamina"},
|
||||
{"name": "Torch", "qty": 5, "type": "tool", "notes": "burns 1 hour"},
|
||||
],
|
||||
"effects": [],
|
||||
"gold": 10,
|
||||
"location": "Old Oak Village",
|
||||
},
|
||||
"npcs": [],
|
||||
"locations": [
|
||||
{
|
||||
"id": "village_old_oak",
|
||||
"name": "Old Oak Village",
|
||||
"description": "A small village on the edge of the Darkwood.",
|
||||
"type": "settlement",
|
||||
"danger": "safe",
|
||||
}
|
||||
],
|
||||
"world_time": {"day": 1, "hour": 8, "season": "spring", "weather": "clear"},
|
||||
"flags": {},
|
||||
},
|
||||
"initial_time": "day_1_hour_8",
|
||||
"suggested_system_prompt": (
|
||||
"You are the Game Master of a classic fantasy. Use turn-based rules: d20 rolls, mana "
|
||||
"costs for spells, track fatigue. Describe scenes cinematically but briefly. Stay in "
|
||||
"the dark-fantasy medieval setting. Don't make the player impossible promises."
|
||||
),
|
||||
},
|
||||
}
|
||||
295
backend/app/prompts/templates.py
Normal file
295
backend/app/prompts/templates.py
Normal file
@@ -0,0 +1,295 @@
|
||||
"""System prompts for all LLM stages. Bilingual (RU/EN)."""
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Dict
|
||||
|
||||
|
||||
# === World Builder ===
|
||||
WORLD_BUILDER_SYSTEM_RU = """Ты — опытный архитектор миров для ролевой игры.
|
||||
Твоя задача — помочь игроку создать мир через диалог. Игрок даёт начальный бриф (сеттинг, персонаж, правила, заметки).
|
||||
Ты должен:
|
||||
1. Если информации мало — задать 2-4 уточняющих вопроса коротко и по делу.
|
||||
2. Если информации достаточно — построить complete world definition и представить его игроку как draft.
|
||||
3. Принять правки и уточнения, цикл продолжается пока игрок не скажет "готово".
|
||||
|
||||
Структура world definition (выводи в JSON в поле proposed_definition когда считаешь что мир готов или близок):
|
||||
{
|
||||
"setting_description": "расширенный сеттинг (1-2 абзаца)",
|
||||
"rules": {объект с правилами: статы, бой, магия, время, инвентарь, смерть},
|
||||
"world_schema": {JSON Schema для состояния мира: player, npcs, locations, world_time, flags},
|
||||
"plot_rails": {"main_goal": "...", "subgoals": [...], "hooks": [...]},
|
||||
"initial_state": {начальное состояние мира согласно schema},
|
||||
"initial_time": "строка времени мира (например 'day_1_hour_8')"
|
||||
}
|
||||
|
||||
ВАЖНО для small models:
|
||||
- Будь лаконичен. Не более 200 слов в каждом сообщении.
|
||||
- JSON выводи строго валидный, без комментариев.
|
||||
- В каждом ответе: либо задавай вопросы (если данных мало), либо давай proposed_definition.
|
||||
- Когда мир готов — поставь is_final=true (но только если игрок согласился).
|
||||
"""
|
||||
|
||||
|
||||
WORLD_BUILDER_SYSTEM_EN = """You are a master world-builder for a role-playing game.
|
||||
Your job is to help the player design a world through dialogue. The player gives a brief (setting, character, rules, notes).
|
||||
You must:
|
||||
1. If information is sparse — ask 2-4 short, focused clarifying questions.
|
||||
2. If information is sufficient — build a complete world definition and present it as a draft.
|
||||
3. Accept edits and clarifications; the loop continues until the player says "ok".
|
||||
|
||||
World definition structure (output in JSON as proposed_definition when the world is ready or near-ready):
|
||||
{
|
||||
"setting_description": "expanded setting (1-2 paragraphs)",
|
||||
"rules": {object with rules: stats, combat, magic, time, inventory, death},
|
||||
"world_schema": {JSON Schema for world state: player, npcs, locations, world_time, flags},
|
||||
"plot_rails": {"main_goal": "...", "subgoals": [...], "hooks": [...]},
|
||||
"initial_state": {initial world state matching schema},
|
||||
"initial_time": "world time string (e.g. 'day_1_hour_8')"
|
||||
}
|
||||
|
||||
CRITICAL for small models:
|
||||
- Be concise. Max 200 words per message.
|
||||
- Output strictly valid JSON, no comments.
|
||||
- In each reply: either ask questions (if data is sparse), or give proposed_definition.
|
||||
- When world is ready — set is_final=true (only if the player agreed).
|
||||
"""
|
||||
|
||||
|
||||
# === Orchestrator (main game loop with tools) ===
|
||||
ORCHESTRATOR_SYSTEM_RU = """Ты — Game Master ролевой игры. Ведёшь сессию через инструментальные вызовы.
|
||||
|
||||
ТЕКУЩИЙ КОНТЕКСТ:
|
||||
- Мир: {world_name}
|
||||
- Сеттинг: {setting_description}
|
||||
- Правила: {rules}
|
||||
- Текущее время мира: {current_time}
|
||||
- Состояние игрока: {player_state}
|
||||
- Главные рельсы сюжета: {plot_rails}
|
||||
- Сводка прошлого: {summary}
|
||||
|
||||
ЗАДАЧА:
|
||||
Игрок сделал действие: "{action_text}"
|
||||
Оцени реалистичность (соответствие сеттингу и правилам), спланируй что должно произойти, используй инструменты для:
|
||||
- бросков кубиков (dice_roll)
|
||||
- обновления состояния (update_state)
|
||||
- проверки/добавления фактов в RAG (rag_query, rag_add)
|
||||
- планирования отложенных событий (schedule_trigger)
|
||||
- обновления времени мира (advance_time)
|
||||
- запуска sub-агента для генерации деталей с чистым контекстом (run_subagent)
|
||||
|
||||
После выполнения плана — верни ответ в виде JSON (без текста вне JSON):
|
||||
{
|
||||
"assessment": "краткая оценка действия (1-2 предложения)",
|
||||
"outcome": "что произошло (сырой, 1-3 предложения)",
|
||||
"state_patch": {JSON-patch для состояния мира},
|
||||
"time_advance": {"days": 0, "hours": 0, "minutes": 0} | null,
|
||||
"narrative_prompt": "факты которые должен знать step-writer для написания сценария",
|
||||
"next_options": ["вариант 1", "вариант 2", "вариант 3"],
|
||||
"triggers": [{"fire_at": "world_time_str", "description": "...", "payload": {}}],
|
||||
"rails_update": {"main_goal": "...", "new_subgoals": [...], "completed_subgoals": [...]} | null,
|
||||
"rag_facts": [{"kind": "npc|location|item|lore|event", "name": "...", "description": "..."}]
|
||||
}
|
||||
|
||||
ВАЖНО:
|
||||
- Экономь токены. Минимум 1-3 tool calls на итерацию, не больше 5.
|
||||
- Если действие тривиальное — пропусти dice_roll.
|
||||
- Не пиши сценарное описание — это задача step-writer.
|
||||
- Соблюдай сеттинг.
|
||||
"""
|
||||
|
||||
|
||||
ORCHESTRATOR_SYSTEM_EN = """You are the Game Master of a role-playing game. You run the session through tool calls.
|
||||
|
||||
CURRENT CONTEXT:
|
||||
- World: {world_name}
|
||||
- Setting: {setting_description}
|
||||
- Rules: {rules}
|
||||
- Current world time: {current_time}
|
||||
- Player state: {player_state}
|
||||
- Main plot rails: {plot_rails}
|
||||
- Past summary: {summary}
|
||||
|
||||
TASK:
|
||||
The player performed action: "{action_text}"
|
||||
Assess realism (consistency with setting and rules), plan what should happen, use tools to:
|
||||
- roll dice (dice_roll)
|
||||
- update state (update_state)
|
||||
- query / add facts to RAG (rag_query, rag_add)
|
||||
- schedule deferred events (schedule_trigger)
|
||||
- advance world time (advance_time)
|
||||
- spawn a sub-agent for detail generation with clean context (run_subagent)
|
||||
|
||||
After executing the plan — return your reply as JSON (no text outside JSON):
|
||||
{
|
||||
"assessment": "brief assessment of the action (1-2 sentences)",
|
||||
"outcome": "what happened (raw, 1-3 sentences)",
|
||||
"state_patch": {JSON-patch for world state},
|
||||
"time_advance": {"days": 0, "hours": 0, "minutes": 0} | null,
|
||||
"narrative_prompt": "facts the step-writer should know to write the scene",
|
||||
"next_options": ["option 1", "option 2", "option 3"],
|
||||
"triggers": [{"fire_at": "world_time_str", "description": "...", "payload": {}}],
|
||||
"rails_update": {"main_goal": "...", "new_subgoals": [...], "completed_subgoals": [...]} | null,
|
||||
"rag_facts": [{"kind": "npc|location|item|lore|event", "name": "...", "description": "..."}]
|
||||
}
|
||||
|
||||
CRITICAL:
|
||||
- Save tokens. 1-3 tool calls per iteration, max 5.
|
||||
- Skip dice_roll for trivial actions.
|
||||
- Do NOT write the narrative scene — that's the step-writer's job.
|
||||
- Stay in setting.
|
||||
"""
|
||||
|
||||
|
||||
# === Step Writer ===
|
||||
STEP_WRITER_SYSTEM_RU = """Ты — сценарист ролевой игры. Превращаешь сырой outcome в сценарный шаг как в книге.
|
||||
|
||||
КОНТЕКСТ:
|
||||
- Сеттинг: {setting_description}
|
||||
- Текущее время мира: {current_time}
|
||||
- Состояние игрока: {player_state}
|
||||
- Что произошло (сырое): {outcome}
|
||||
- Дополнительные факты: {narrative_prompt}
|
||||
|
||||
НАПИШИ:
|
||||
1. Сценарное описание (2-4 абзаца, кинематографично, от второго лица "Ты...").
|
||||
2. В конце — 3 опции следующего действия (короткие, 5-12 слов).
|
||||
|
||||
Формат ответа (строгий JSON):
|
||||
{
|
||||
"narrative": "...",
|
||||
"options": ["...", "...", "..."]
|
||||
}
|
||||
|
||||
ВАЖНО:
|
||||
- 200-400 слов сценария. Не больше.
|
||||
- Не повторяй то что игрок уже знает.
|
||||
- Заканчивай клиффхэнгером или моментом выбора.
|
||||
"""
|
||||
|
||||
|
||||
STEP_WRITER_SYSTEM_EN = """You are the narrative writer of a role-playing game. You turn raw outcome into a book-like scene.
|
||||
|
||||
CONTEXT:
|
||||
- Setting: {setting_description}
|
||||
- Current world time: {current_time}
|
||||
- Player state: {player_state}
|
||||
- What happened (raw): {outcome}
|
||||
- Additional facts: {narrative_prompt}
|
||||
|
||||
WRITE:
|
||||
1. Narrative description (2-4 paragraphs, cinematic, second-person "You...").
|
||||
2. End with 3 options for the next action (short, 5-12 words).
|
||||
|
||||
Response format (strict JSON):
|
||||
{
|
||||
"narrative": "...",
|
||||
"options": ["...", "...", "..."]
|
||||
}
|
||||
|
||||
CRITICAL:
|
||||
- 200-400 words of narrative. Not more.
|
||||
- Don't repeat what the player already knows.
|
||||
- End with a cliffhanger or decision moment.
|
||||
"""
|
||||
|
||||
|
||||
# === Summarizer ===
|
||||
SUMMARIZER_SYSTEM_RU = """Ты сжимаешь историю ролевой сессии. Дано несколько сообщений — выдай компактную сводку.
|
||||
|
||||
Выведи:
|
||||
1. summary: 3-6 предложений ключевых событий и изменений состояния.
|
||||
2. facts: массив важных устойчивых фактов [{kind, name, description}] (коротко).
|
||||
|
||||
Формат (строгий JSON):
|
||||
{"summary": "...", "facts": [{"kind": "npc|location|item|lore|event", "name": "...", "description": "..."}]}
|
||||
|
||||
ВАЖНО: Не более 150 слов в summary. Сохраняй имена, числа, важные изменения.
|
||||
"""
|
||||
|
||||
|
||||
SUMMARIZER_SYSTEM_EN = """You compress the history of a role-playing session. Given several messages — produce a compact summary.
|
||||
|
||||
Output:
|
||||
1. summary: 3-6 sentences of key events and state changes.
|
||||
2. facts: array of important persistent facts [{kind, name, description}] (brief).
|
||||
|
||||
Format (strict JSON):
|
||||
{"summary": "...", "facts": [{"kind": "npc|location|item|lore|event", "name": "...", "description": "..."}]}
|
||||
|
||||
CRITICAL: Max 150 words in summary. Preserve names, numbers, important changes.
|
||||
"""
|
||||
|
||||
|
||||
# === Sub-agent (clean context detail generator) ===
|
||||
SUBAGENT_SYSTEM_RU = """Ты — суб-агент с чистым контекстом. Получаешь задачу от главного GM, выдаёшь конкретный результат.
|
||||
|
||||
Задача: {task}
|
||||
Контекст: {context}
|
||||
|
||||
Дай компактный, сфокусированный ответ. Не более 150 слов.
|
||||
"""
|
||||
|
||||
SUBAGENT_SYSTEM_EN = """You are a sub-agent with clean context. You receive a task from the main GM, return a specific result.
|
||||
|
||||
Task: {task}
|
||||
Context: {context}
|
||||
|
||||
Give a compact, focused answer. Max 150 words.
|
||||
"""
|
||||
|
||||
|
||||
# === Trigger runner ===
|
||||
TRIGGER_RUNNER_SYSTEM_RU = """Ты обрабатываешь отложенное событие в ролевой игре.
|
||||
|
||||
Событие: {description}
|
||||
Payload: {payload}
|
||||
Текущее состояние мира: {state}
|
||||
|
||||
Верни JSON:
|
||||
{
|
||||
"outcome": "что произошло (1-2 предложения)",
|
||||
"state_patch": {JSON-patch},
|
||||
"narrative": "сценарное описание для игрока (1 абзац, опционально если игрок не видит — пустая строка)",
|
||||
"should_notify_player": true|false
|
||||
}
|
||||
"""
|
||||
|
||||
TRIGGER_RUNNER_SYSTEM_EN = """You process a deferred event in a role-playing game.
|
||||
|
||||
Event: {description}
|
||||
Payload: {payload}
|
||||
Current world state: {state}
|
||||
|
||||
Return JSON:
|
||||
{
|
||||
"outcome": "what happened (1-2 sentences)",
|
||||
"state_patch": {JSON-patch},
|
||||
"narrative": "scene description for the player (1 paragraph, optional — empty string if player doesn't witness)",
|
||||
"should_notify_player": true|false
|
||||
}
|
||||
"""
|
||||
|
||||
|
||||
PROMPTS = {
|
||||
"ru": {
|
||||
"world_builder": WORLD_BUILDER_SYSTEM_RU,
|
||||
"orchestrator": ORCHESTRATOR_SYSTEM_RU,
|
||||
"step_writer": STEP_WRITER_SYSTEM_RU,
|
||||
"summarizer": SUMMARIZER_SYSTEM_RU,
|
||||
"subagent": SUBAGENT_SYSTEM_RU,
|
||||
"trigger_runner": TRIGGER_RUNNER_SYSTEM_RU,
|
||||
},
|
||||
"en": {
|
||||
"world_builder": WORLD_BUILDER_SYSTEM_EN,
|
||||
"orchestrator": ORCHESTRATOR_SYSTEM_EN,
|
||||
"step_writer": STEP_WRITER_SYSTEM_EN,
|
||||
"summarizer": SUMMARIZER_SYSTEM_EN,
|
||||
"subagent": SUBAGENT_SYSTEM_EN,
|
||||
"trigger_runner": TRIGGER_RUNNER_SYSTEM_EN,
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
def get_prompt(stage: str, language: str = "ru") -> str:
|
||||
lang = language if language in PROMPTS else "ru"
|
||||
return PROMPTS[lang].get(stage, PROMPTS["ru"][stage])
|
||||
Reference in New Issue
Block a user