summaryrefslogtreecommitdiff
path: root/makima/src/llm/mod.rs
blob: 00f3333072499e23d2fde28baca8df0826a9d5b1 (plain) (blame)
1
2
3
4
5
6
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};