Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ Shared helpers live in `detectors/utils.py`. Types live in `types/detector.py`.

### Docstrings

Use Google-style docstrings for public functions, classes, and modules.
Use Google-style docstrings for public functions, classes, and modules. Use single backticks (`` `foo` ``) for inline code references, not RST-style double backticks (`` ``foo`` ``).

### Logging Style

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
from .crescendo import CrescendoStrategy
from .prompt_strategy import PromptStrategy
from .prompt_strategy.gradual_escalation import get_template as _gradual_escalation_template
from .target_session import StrandsAgentSession, TargetCheckpoint, TargetSession, ToolUseEntry
from .target_session import (
StrandsAgentSession,
StrandsMultiAgentSession,
TargetCheckpoint,
TargetSession,
ToolUseEntry,
)

# Ready-made strategy instances users can pass to RedTeamExperiment(attack_strategies=[...]).
# Strategy instances are shared across cases, so each must keep `__init__` for static
Expand All @@ -19,6 +25,7 @@
"CrescendoStrategy",
"PromptStrategy",
"StrandsAgentSession",
"StrandsMultiAgentSession",
"TargetCheckpoint",
"TargetSession",
"ToolUseEntry",
Expand Down
Loading
Loading