AIAny
AI Infra2026
Icon for item

forge

Provides a reliability layer for self-hosted LLM tool-calling and multi-step agent workflows. Adds guardrails — rescue parsing, response validation, retry nudges, and a synthetic respond tool — and ships a Drop-in OpenAI-compatible proxy plus a WorkflowRunner for structured loops.

Introduction

Most self-hosted LLM setups break down when models must call tools reliably: malformed tool calls, wrong formats, and fragile text-vs-tool decisions turn simple workflows into engineering overhead. Forge addresses that gap by applying a lightweight, opt-in reliability stack around a single agentic loop so local models behave predictably when invoking tools.

What Sets It Apart
  • Practical guardrails focused on tool-calling: rescue parsing (extracts tool calls from Mistral/Qwen/JSON-in-fences), response validation, and retry nudges that correct malformed outputs before they hit your client. This reduces brittle integration failures without changing your agent harness.
  • Two usage surfaces: a drop-in OpenAI-compatible proxy that transparently fortifies existing clients, and a WorkflowRunner for structured multi-step workflows (with SlotWorker for queued GPU access). The proxy injects a synthetic respond tool and hides retries so clients see normal chat-completion responses.
  • Measured improvements: the project reports raising an 8B local model from single-digit reliability to 84% on its 26-scenario eval suite and improving a Sonnet baseline from 85% to 98% on the same workload (reported from the repo evals). Supports llama-server, Ollama, Llamafile and API backends.
Who it's for — and tradeoffs

Great fit if you run or want to prototype self-hosted LLMs that must call external tools reliably (local inference on ~8B models, multi-step workflows, or adding guardrails to existing agent harnesses). Look elsewhere if you need multi-agent orchestration, cross-agent graphs, or a full application-level coding harness: forge intentionally focuses on a single agent loop and middleware-level reliability. Also note proxy mode is single-shot per request (session state and advanced step-enforcement live in WorkflowRunner).

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).