diff options
| author | T <t@tjp.lol> | 2026-05-27 17:07:49 -0600 |
|---|---|---|
| committer | T <t@tjp.lol> | 2026-05-27 18:05:12 -0600 |
| commit | 48651e123ef0cf1d02eac781902517c0628b310a (patch) | |
| tree | f8f87205b2ca716f406ae69288ebef622659dd9e /src/main.zig | |
| parent | f72b5793a5c7e7891e4904be73c0bc6bc038fa18 (diff) | |
real coding agent tools
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.zig b/src/main.zig index f95812d..bdb5390 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,6 +1,5 @@ const std = @import("std"); const panto = @import("panto"); -const ping_tool = @import("ping_tool.zig"); const lua_bridge = @import("lua_bridge.zig"); const lua_runtime = @import("lua_runtime.zig"); const extension_loader = @import("extension_loader.zig"); @@ -370,10 +369,6 @@ pub fn main(init: std.process.Init) !void { var agent = panto.agent.Agent.init(alloc, io, prov); defer agent.deinit(); - // smoke test: register a trivial built-in tool so we can exercise - // the tool-call loop against a real LLM. - try agent.registerTool(ping_tool.tool()); - // Spin up the long-lived Lua runtime. All Lua extensions load into // one `lua_State`; module-global state survives across calls. The // runtime registers with the agent as a single `ToolSource` named |
