summaryrefslogtreecommitdiff
path: root/makima/src/llm/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/llm/mod.rs')
-rw-r--r--makima/src/llm/mod.rs13
1 files changed, 6 insertions, 7 deletions
diff --git a/makima/src/llm/mod.rs b/makima/src/llm/mod.rs
index fc3802b..212876a 100644
--- a/makima/src/llm/mod.rs
+++ b/makima/src/llm/mod.rs
@@ -19,19 +19,18 @@ pub use contract_tools::{
pub use groq::GroqClient;
pub use mesh_tools::{parse_mesh_tool_call, MeshToolExecutionResult, MeshToolRequest, MESH_TOOLS};
pub use phase_guidance::{
- check_deliverables_met, check_phase_completion, check_phase_completion_for_type,
- format_checklist_markdown, generate_deliverable_prompt_guidance, get_next_phase_for_contract,
- get_phase_checklist, get_phase_checklist_for_type, get_phase_deliverables, get_phase_deliverables_for_type,
- should_auto_progress, AutoProgressAction, AutoProgressDecision, DeliverableCheckResult, DeliverableItem,
- DeliverableStatus, FileInfo, FilePriority, PhaseChecklist, PhaseDeliverables, RecommendedFile,
- TaskInfo, TaskStats,
+ check_deliverables_met, format_checklist_markdown, generate_deliverable_prompt_guidance,
+ get_next_phase_for_contract, get_phase_checklist_for_type, get_phase_deliverables,
+ get_phase_deliverables_for_type, should_auto_progress, AutoProgressAction, AutoProgressDecision,
+ Deliverable, DeliverableCheckResult, DeliverableItem, DeliverablePriority, DeliverableStatus,
+ PhaseChecklist, PhaseDeliverables, TaskInfo, TaskStats,
};
pub use task_output::{
analyze_task_output, format_parsed_tasks, parse_tasks_from_breakdown, ParsedTask,
PhaseImpact, SuggestedAction, TaskOutputAnalysis, TaskParseResult,
};
pub use markdown::{body_to_markdown, markdown_to_body};
-pub use templates::{all_templates, templates_for_phase, FileTemplate};
+pub use templates::{all_contract_types, ContractTypeTemplate};
pub use tools::{
execute_tool_call, Tool, ToolCall, ToolResult, UserAnswer, UserQuestion, VersionToolRequest,
AVAILABLE_TOOLS,