From 555061b179b8ec034cb70f9a2dd6c823ced0f637 Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 23 Dec 2025 14:43:23 +0000 Subject: Add file body and initial tool call system --- makima/src/llm/mod.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 makima/src/llm/mod.rs (limited to 'makima/src/llm/mod.rs') diff --git a/makima/src/llm/mod.rs b/makima/src/llm/mod.rs new file mode 100644 index 0000000..00f3333 --- /dev/null +++ b/makima/src/llm/mod.rs @@ -0,0 +1,7 @@ +//! LLM integration module for file editing via tool calling. + +pub mod groq; +pub mod tools; + +pub use groq::GroqClient; +pub use tools::{execute_tool_call, Tool, ToolCall, ToolResult, AVAILABLE_TOOLS}; -- cgit v1.2.3