Kairo-Jinkendo/backend/placeholder_registrations/debug.py
Lars 53047b6c16
All checks were successful
Deploy Development / deploy (push) Successful in 38s
Test Suite / pytest-backend (push) Successful in 18s
Test Suite / lint-backend (push) Successful in 1s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 24s
AP0.4: Feature-, Prompt- und Config-Registry mit Single-Render und Entitlements-Features.
Migration 005, Registry-Sync, Placeholder-Validation, capability-geschuetzte API, Tests und Abschlussbericht v0.1.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-04 23:29:02 +02:00

15 lines
429 B
Python

"""Debug context placeholders."""
from __future__ import annotations
from placeholder_registry import PlaceholderRegistration, register_placeholder
_CTX = "kairo.debug_context"
register_placeholder(
PlaceholderRegistration("debug_message", _CTX, "string", "Freier Debug-Text", required=True)
)
register_placeholder(
PlaceholderRegistration("debug_level", _CTX, "string", "Log-Level oder Kategorie", required=False)
)