Core LLM client utility for EEA GenAI packages
Project description
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.
Main features
ILLMClient utility — 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).
IAgentExecutor utility — runs a pydantic_ai.Agent loop with ZCA-discovered tools, MCP toolsets, structured output, and the enricher pipeline.
IEnricher named utility interface — single abstraction for reusable system/user prompt fragments. Replaces the previous IAgentSkill + IAgentContextProvider split (both kept as aliases).
IAgentTool named utility interface — tool callables exposed to the LLM via pydantic_ai tool calling. Thread-safe Plone site restoration via the site_scope context manager.
IAgentConfiguration named utility interface + base class — ship default agents from Python via ZCML; the control panel agents_json overrides 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 via mcp_servers.
Typed exceptions (AgentDisabled, AgentNotFound, AgentConfigInvalid, AgentExecutionFailed, EnricherFailed) instead of bare RuntimeError.
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.manage permission for administrative operations.
Install
Add eea.genai.core to your requirements.txt.
Install the GenericSetup profile to enable the control panel.
Environment variables
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.
Quick start
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.
Copyright and license
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.
Changelog
1.0 - (2026-05-20)
Initial release [avoinea refs #000000]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file eea_genai_core-1.1.tar.gz.
File metadata
- Download URL: eea_genai_core-1.1.tar.gz
- Upload date:
- Size: 40.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dd1e9f5a8c3c1dad041da3049ae92f4e584f3e5d3562d436782cc8c560b9111
|
|
| MD5 |
46d96f010fc849e87dcd9e767ffeb6bb
|
|
| BLAKE2b-256 |
01833d9a4877ef57a59dc8247955aa33f2673a44da891be12ec79cb913a788fc
|