diff options
| author | soryu <soryu@soryu.co> | 2026-01-31 22:47:42 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-31 22:47:42 +0000 |
| commit | 6cfec951764dc2fb396e58c4eeecae178c41a513 (patch) | |
| tree | 407477db4ad0ebcf6d696cd24b412bbe2d67d892 /makima/src/llm/mod.rs | |
| parent | c26889e42310bd0c3514f633a299a72d6ba2dc80 (diff) | |
| download | soryu-6cfec951764dc2fb396e58c4eeecae178c41a513.tar.gz soryu-6cfec951764dc2fb396e58c4eeecae178c41a513.zip | |
[WIP] Heartbeat checkpoint - 2026-01-31 22:47:42 UTC
Diffstat (limited to 'makima/src/llm/mod.rs')
| -rw-r--r-- | makima/src/llm/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/makima/src/llm/mod.rs b/makima/src/llm/mod.rs index 212876a..3880177 100644 --- a/makima/src/llm/mod.rs +++ b/makima/src/llm/mod.rs @@ -6,6 +6,7 @@ pub mod groq; pub mod markdown; pub mod mesh_tools; pub mod phase_guidance; +pub mod red_team_prompt; pub mod task_output; pub mod templates; pub mod tools; @@ -40,6 +41,10 @@ pub use transcript_analyzer::{ ExtractedActionItem, SpeakerStats, format_transcript_for_analysis, calculate_speaker_stats, build_analysis_prompt, parse_analysis_response, }; +pub use red_team_prompt::{ + generate_red_team_system_prompt, generate_red_team_task_plan, + RedTeamPromptContext, +}; /// Available LLM providers and models #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] |
