Skip to content

Commit de8bfe9

Browse files
gHashTagclaude
andcommitted
feat: connect LLM to tri /chat — FluentChatEngine replaces pattern matcher
tri /chat now uses FluentChatEngine (symbolic + TinyLlama GGUF fallback) instead of the pure pattern matcher (IglaLocalChat). This gives tri /chat the same LLM intelligence as the fluent binary. Changes: - build.zig: vibeec_chat module root → igla_fluent_cli.zig - igla_fluent_cli.zig: re-export IglaLocalChat types for backward compat - tri/main.zig: CLIState uses FluentChatEngine, chat() instead of respond() 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 02e32be commit de8bfe9

3 files changed

Lines changed: 2487 additions & 26 deletions

File tree

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ pub fn build(b: *std.Build) void {
339339
.optimize = optimize,
340340
});
341341
const vibeec_chat = b.createModule(.{
342-
.root_source_file = b.path("src/vibeec/igla_local_chat.zig"),
342+
.root_source_file = b.path("src/vibeec/igla_fluent_cli.zig"),
343343
.target = target,
344344
.optimize = optimize,
345345
});

0 commit comments

Comments
 (0)