AIAny
AI Agent2025
Icon for item

Embabel Agent Framework

JVM framework for authoring agentic flows that mixes LLM-driven prompts with strongly typed domain models and normal code to plan and execute goals. Key features: pluggable planners (GOAP, Utility AI), Spring integration, strong typing, testability, and support for local and cloud LLMs.

Introduction

Why this matters

Agentic systems often end up as ad-hoc orchestrations of LLM calls, scripts and glue code that are hard to test, extend, and safely operate in production. This framework treats agent flows as first-class, strongly typed constructs on the JVM so teams can compose LLM prompts, code actions, and domain objects into dynamic plans that replan as state changes — making long-horizon and tool-augmented agents easier to reason about and test.

What Sets It Apart
  • Pluggable planning model: supports Goal Oriented Action Planning (GOAP) by default and also offers Utility AI, letting the system choose actions by preconditions or by dynamic utility scores for exploration and open-ended tasks. This enables dynamic sequencing, parallelization decisions, and replanning after every action.
  • Tight JVM & Spring integration: agents are Spring-managed (annotations + Kotlin DSL), so existing Spring services, DI, AOP and persistence are directly usable; observability (tracing/metrics) and transaction management integrate with standard JVM tooling.
  • Strong typing and testability: domain objects are first-class, LLM prompts can create typed objects, and the framework includes facilities to unit-test prompts, actions and end-to-end agent runs without hitting external APIs.
  • Tooling and model flexibility: built-in support for MCP servers/tools, local model runtimes (Ollama, Docker-hosted models), and common cloud providers (OpenAI, Anthropic, OCI), plus conventions for mixing cheap/local models with expensive ones to control cost and privacy.
Who It's For and Tradeoffs

Great fit if you build JVM/Spring applications that need reusable, testable agent behavior (enterprise apps, backend services, or systems that must integrate with existing Java libraries). It particularly suits teams that want deterministic wiring and typed contracts between code and LLM outputs.

Look elsewhere if you need a lightweight Python-first agent playground, if you cannot adopt Spring/JVM infrastructure, or if you need a fully mature commercial platform — the project is early-stage and presumes JVM/Spring familiarity and some setup (API keys, optional Docker/OLLAMA, MCP tooling) to access its full capabilities.

Information

  • Websitegithub.com
  • OrganizationsEmbabel Software Inc
  • Published date2025/04/10

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.