meta-hack / server /__init__.py
Vignesh38's picture
Initial commit: PromptInjectionTriageEnv
138ebd0
Raw
History Blame Contribute Delete
339 Bytes
# server/__init__.py
# Re-exports all public symbols from server.app so that
# `from server import app, grade, ...` still works in tests.
from server.app import ( # noqa: F401
app,
grade,
_normalize_type,
_sev_rank,
_markers_found,
_sanitization_ok,
TASK_EASY,
TASK_MEDIUM,
TASK_HARD,
ALL_TASKS,
)