Core agentic LLM layer for EEA GenAI packages.
Provides the multi-provider LLM client, the agent executor (built on
pydantic-ai), the unified enricher interface, MCP toolset integration,
and the control-panel-backed settings shared by all eea.genai.*
packages.
ILLMClientutility — multi-provider model wrapper. Supported providers:openai-compatible(LiteLLM, vLLM, any OpenAI API),openai,anthropic,google,ollama. Configured via control panel or env vars (LLM_MODEL,LLM_URL,LLM_API_KEY).IAgentExecutorutility — runs apydantic_ai.Agentloop with ZCA-discovered tools, MCP toolsets, structured output, and the enricher pipeline.IEnrichernamed utility interface — single abstraction for reusable system/user prompt fragments. Replaces the previousIAgentSkill+IAgentContextProvidersplit (both kept as aliases).IAgentToolnamed utility interface — tool callables exposed to the LLM viapydantic_aitool calling. Thread-safe Plone site restoration via thesite_scopecontext manager.IAgentConfigurationnamed utility interface + base class — ship default agents from Python via ZCML; the control panelagents_jsonoverrides them by name.- Pure-function prompt composition (
core.prompts.build_prompts) testable without Plone bootstrap. - MCP server integration with
${VAR}and${VAR:-default}env expansion, filtered tool refs (server/tool) and full toolset inclusion viamcp_servers. - Typed exceptions (
AgentDisabled,AgentNotFound,AgentConfigInvalid,AgentExecutionFailed,EnricherFailed) instead of bareRuntimeError. validate_agent_config(config)— fail-fast validation of tool, enricher, MCP server, and output-type references at config load time.- Built-in tools:
extract_blocks,memory,code_exec,fetch_url. eea.genai.managepermission for administrative operations.
- Add
eea.genai.coreto yourrequirements.txt. - Install the GenericSetup profile to enable the control panel.
LLM_MODEL— model identifier (e.g.gpt-4o,claude-sonnet-4-6,llama3). Falls back here if the registry value is empty.LLM_URL— base URL for OpenAI-compatible or Ollama endpoints (e.g.http://localhost:4000/v1). Not used for direct OpenAI/Anthropic/Google providers.LLM_API_KEY— API key for the configured provider.ANTHROPIC_API_KEY,GOOGLE_API_KEY— provider-specific overrides for direct provider mode.
API keys are never stored in the registry.
Define an enricher:
from eea.genai.core.interfaces import Enricher
class MyContextEnricher(Enricher):
description = "Adds dataset summary to the user prompt"
def user_prompt(self, deps):
return f"Active dataset: {deps.context.title}"
Register it via ZCML:
<genai:agentSkill name="my_context" class=".enrichers.MyContextEnricher" />
Define an agent:
from eea.genai.core.interfaces import AgentConfiguration
class MyAgent(AgentConfiguration):
system_prompt = "You are an analyst."
task_prompt = "Produce a one-paragraph briefing."
enrichers = ["my_context", "generic_metadata"]
tools = ["fetch_url"]
output_type = "my.package.models.Briefing"
max_iterations = 5
Register it:
<genai:agent name="briefing" class=".agents.MyAgent" />
Run it:
from eea.genai.core.agent import AgentDeps
from eea.genai.core.utils import get_executor
result = get_executor().run_with_agent(
"briefing",
user_prompt="Brief me on regional air quality.",
deps=AgentDeps(context=obj, request=request),
)
Control-panel agents_json overrides Python-defined agents by name
without code changes.
See ARCHITECTURE.md in this package for the full reference.
The Initial Owner of the Original Code is European Environment Agency (EEA). All Rights Reserved.
All contributions to this package are property of their respective authors, and are covered by the same license.
The eea.genai.core is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.