Agent Kernel
Agent Kernel is a lightweight AI agent runtime and adapter layer for building and running AI agents across multiple frameworks. Migrate your existing agents to Agent Kernel and instantly utilize pre-built execution and testing capabilities. Deploy the same agent code without modification — see the "Multi-Cloud Deployment" section below for supported platforms.
Features
- Unified API: Common abstractions (Agent, Runner, Session, Module, Runtime) across frameworks
- Multi-Framework Support: OpenAI Agents SDK, CrewAI, LangGraph, Google ADK, Smolagents, and Pydantic AI
- Session Management: Built-in session abstraction with pluggable storage backends
- Knowledge Bases: Unified
KnowledgeBaseinterface with ChromaDB, Neo4j, and Starburst/Trino backends viaKnowledgeBuilder - Sandbox: Execute agent-generated code and shell commands in an isolated, permission-bounded environment with pluggable providers (
local_subprocess,docker,kubernetes,e2b,daytona,ec2_ssm), workload profiles, policy enforcement, per-user identity, and a queue-decoupled broker for long-running executions - Scheduled Tasks: Deferred and recurring chat execution (
schedule.at/schedule.cron) with a management REST API, five agent-facing tools, and pluggable provider (local,eventbridge) and store (in_memory,redis,valkey,dynamodb) backends - Flexible Deployment: Interactive CLI, REST API, serverless, or containerized deployment — see the "Multi-Cloud Deployment" section below
- Pluggable Architecture: Easy to extend with custom framework adapters
- MCP Server: Built-in Model Context Protocol server for exposing agents as MCP tools and exposing any custom tool
- A2A Server: Built-in Agent-to-Agent communication server for exposing agents with a simple configuration change
- AG-UI Server: Built-in AG-UI protocol handler for driving any streaming-capable agent from an AG-UI frontend, with opt-in shared state and client-context tools
- REST API: Built-in REST API server for agent interaction
- Test Automation: Built-in test suite for testing agents
Installation
pip install agentkernel
Install optional knowledge base extras as needed:
pip install "agentkernel[chromadb]"
pip install "agentkernel[neo4j]"
pip install "agentkernel[trino]"
For LLM-based thread naming with Conversation Thread Support:
pip install "agentkernel[thread]"
For the AG-UI server (AGUIRequestHandler):
pip install "agentkernel[agui]"
For the sandbox providers (the local_subprocess provider needs no extra; ec2_ssm rides
the aws extra):
pip install "agentkernel[sandbox-docker]" # docker provider
pip install "agentkernel[kubernetes]" # kubernetes provider (pod per sandbox)
pip install "agentkernel[e2b]" # e2b cloud provider
pip install "agentkernel[daytona]" # daytona cloud provider
pip install "agentkernel[aws]" # ec2_ssm provider (boto3)
For cron parsing with the Scheduling capability (the eventbridge provider rides the aws extra):
pip install "agentkernel[cron]"
Requirements:
- Python 3.12+
Quick Start
Basic Concepts
- Agent: Framework-specific agent wrapped by an Agent Kernel adapter
- Runner: Framework-specific execution strategy
- Session: Shared state across conversation turns
- Module: Container that registers agents with the Runtime
- Runtime: Global registry and orchestrator for agents
CrewAI Example
from crewai import Agent as CrewAgent
from agentkernel.cli import CLI
from agentkernel.crewai import CrewAIModule
general_agent = CrewAgent(
role="general",
goal="Agent for general questions",
backstory="You provide assistance with general queries. Give direct and short answers",
verbose=False,
)
math_agent = CrewAgent(
role="math",
goal="Specialist agent for math questions",
backstory="You provide help with math problems. Explain your reasoning at each step and include examples. \
If prompted for anything else you refuse to answer.",
verbose=False,
)
# Register agents with Agent Kernel
CrewAIModule([general_agent, math_agent])
if __name__ == "__main__":
CLI.main()
LangGraph Example
from langgraph.graph import StateGraph
from agentkernel.cli import CLI
from agentkernel.langgraph import LangGraphModule
# Build and compile your graph
sg = StateGraph(...)
compiled = sg.compile()
compiled.name = "assistant"
LangGraphModule([compiled])
if __name__ == "__main__":
CLI.main()
OpenAI Agents SDK Example
from agents import Agent as OpenAIAgent
from agentkernel.cli import CLI
from agentkernel.openai import OpenAIModule
general_agent = OpenAIAgent(
name="general",
handoff_description="Agent for general questions",
instructions="You provide assistance with general queries. Give short and direct answers.",
)
OpenAIModule([general_agent])
if __name__ == "__main__":
CLI.main()
Google ADK Example
from google.adk.agents import Agent
from agentkernel.cli import CLI
from agentkernel.adk import GoogleADKModule
from google.adk.models.lite_llm import LiteLlm
# Create Google ADK agents
math_agent = Agent(
name="math",
model=LiteLlm(model="openai/gpt-4o-mini"),
description="Specialist agent for math questions",
instruction="""
You provide help with math problems.
Explain your reasoning at each step and include examples.
If prompted for anything else you refuse to answer.
""",
)
GoogleADKModule([math_agent])
if __name__ == "__main__":
CLI.main()
Interactive CLI
Agent Kernel includes an interactive CLI for local development and testing.
Available Commands:
!h,!help— Show help!ld,!load <module_name>— Load a Python module containing agents!ls,!list— List registered agents!s,!select <agent_name>— Select an agent!n,!new— Start a new session!q,!quit— Exit
Usage:
python demo.py
Then interact with your agents:
(assistant) >> !load my_agents
(assistant) >> !select researcher
(researcher) >> What is the latest news on AI?
Multi-Cloud Deployment
Supported Cloud Platforms: AWS, Azure, GCP
Deploy your agents to AWS, Azure, or GCP using the built-in cloud deployment handlers.
AWS Lambda Deployment
Deploy your agents as serverless functions using the built-in Lambda handler.
from openai import OpenAI
from agents import Agent as OpenAIAgent
from agentkernel.aws import Lambda
from agentkernel.openai import OpenAIModule
client = OpenAI()
assistant = OpenAIAgent(name="assistant")
OpenAIModule([assistant])
handler = Lambda.handler
Note that this is just the simple serverless version. A more advanced serverless deployment mode, which uses queues for scalability, is also available. For queue-backed execution modes and response-store configuration, see the AWS Serverless Deployment guide.
The AWS serverless handler accepts both a direct BaseRunRequest payload and the normalized BaseRequest envelope. If a flat run payload is provided, Agent Kernel generates a request_id and normalizes it before processing.
Accepted payloads:
{
"prompt": "Hello agent",
"agent": "assistant",
"session_id": "user-123"
}
{
"request_id": "req-123",
"user_id": "user-123",
"body": {
"prompt": "Hello agent",
"agent": "assistant",
"session_id": "user-123"
}
}
Azure Functions Deployment
Deploy your agents as Azure Functions using the built-in Azure handler.
from openai import OpenAI
from agents import Agent as OpenAIAgent
from agentkernel.azure import AzureFunctions
from agentkernel.openai import OpenAIModule
client = OpenAI()
assistant = OpenAIAgent(name="assistant")
OpenAIModule([assistant])
handler = AzureFunctions.handler
Request Format:
{
"request_id": "req-123",
"user_id": "user-123",
"body": {
"prompt": "Hello agent",
"agent": "assistant",
"session_id": "user-123"
}
}
Azure Functions also accepts the normalized envelope, and flat run payloads are normalized in the same way before the request reaches the agent runtime.
Response Format:
{
"result": "Agent response here"
}
Status Codes:
200— Success400— No agent available500— Unexpected error
GCP Cloud Run Deployment
Deploy your agents to GCP Cloud Run using the built-in CloudRun handler.
from agentkernel.gcp import CloudRun
from agentkernel.openai import OpenAIModule
OpenAIModule([...])
@CloudRun.register("/app", method="GET")
def app_handler() -> dict:
return {"status": "ok"}
def main() -> None:
CloudRun.run()
if __name__ == "__main__":
main()
CloudRun is the GCP equivalent of Lambda (AWS) and AzureFunctions (Azure). It wraps RESTAPI and starts a FastAPI/uvicorn server. Custom routes are registered with @CloudRun.register(path, method). Use CloudRun.run() instead of RESTAPI.run() when deploying to GCP.
For full Terraform deployment configuration, see ak-deployment/ak-gcp/ or the GCP deployment docs.
On-Prem / Kubernetes Deployment
Deploy the queue pipeline to any Kubernetes cluster with the official Helm chart: an io-handler Deployment (REST API + Response Handler), an agent-runner Deployment, and an optional WebSocket gateway, over Kafka or NATS JetStream (or SQS on EKS). Your image supplies one entry file per component:
# app_io_handler.py
from agentkernel.pipeline import IOHandler
IOHandler.run()
# app_agent_runner.py
from agentkernel.openai import OpenAIModule
from agentkernel.pipeline import AgentRunner
OpenAIModule([...])
AgentRunner.run()
The chart injects broker and store connections as AK_* environment variables. See
ak-deployment/ak-k8s/,
the On-Prem / Kubernetes docs,
and the end-to-end example at
examples/k8s/openai-queue-mode.
Configuration
Agent Kernel can be configured via environment variables, .env files, or YAML/JSON configuration files.
Configuration Precedence
Values are loaded in the following order (highest precedence first):
- Environment variables (including variables from
.envfile) - Configuration file (YAML or JSON)
- Built-in defaults
Configuration File
By default, Agent Kernel looks for ./config.yaml in the current working directory.
Override the config file path:
export AK_CONFIG_PATH_OVERRIDE=config.json
# or
export AK_CONFIG_PATH_OVERRIDE=conf/agent-kernel.yaml
Supported formats: .yaml, .yml, .json
Configuration Options
Logging Configuration
-
Field:
logging.ak.level -
Type: string
-
Default:
WARNING -
Description: Agent Kernel logger level (INFO, DEBUG, ERROR, WARNING, CRITICAL)
-
Environment Variable:
AK_LOGGING__AK__LEVEL -
Field:
logging.system.level -
Type: string
-
Default:
WARNING -
Description: System/root logger level (INFO, DEBUG, ERROR, WARNING, CRITICAL)
-
Environment Variable:
AK_LOGGING__SYSTEM__LEVEL
Session Store
Configure where agent sessions are stored (supports multi-cloud storage backends).
- Field:
session.type - Type: string
- Options:
in_memory,redis,valkey(AWS),dynamodb(AWS),cosmosdb(Azure),firestore(GCP) - Default:
in_memory - Environment Variable:
AK_SESSION__TYPE
Redis Configuration
Required when session.type=redis:
-
URL
- Field:
session.redis.url - Default:
redis://localhost:6379 - Description: Redis connection URL. Use
rediss://for SSL - Environment Variable:
AK_SESSION__REDIS__URL
- Field:
-
TTL (Time to Live)
- Field:
session.redis.ttl - Default:
604800(7 days) - Description: Session TTL in seconds
- Environment Variable:
AK_SESSION__REDIS__TTL
- Field:
-
Key Prefix
- Field:
session.redis.prefix - Default:
ak:sessions: - Description: Key prefix for session storage
- Environment Variable:
AK_SESSION__REDIS__PREFIX
- Field:
Valkey Configuration
Required when session.type=valkey (requires the agentkernel[valkey] extra). Valkey
is the open-source, Linux Foundation-governed fork of Redis — wire-compatible with Redis and
available on AWS ElastiCache at a lower price point than the Redis OSS engine:
-
URL
- Field:
session.valkey.url - Default:
valkey://localhost:6379 - Description: Valkey connection URL. Use
valkeys://for SSL - Environment Variable:
AK_SESSION__VALKEY__URL
- Field:
-
TTL (Time to Live)
- Field:
session.valkey.ttl - Default:
604800(7 days) - Description: Session TTL in seconds
- Environment Variable:
AK_SESSION__VALKEY__TTL
- Field:
-
Key Prefix
- Field:
session.valkey.prefix - Default:
ak:sessions: - Description: Key prefix for session storage
- Environment Variable:
AK_SESSION__VALKEY__PREFIX
- Field:
Conversation Thread Support
Mounting AgentThreadRequestHandler (from agentkernel.thread) instead of the default REST handler
enables persistent, named conversation threads keyed by session_id: it serves the standard chat routes
with thread recording, plus the read routes (GET /api/v1/threads and
GET /api/v1/threads/{session_id}, optionally protected by a pluggable Authoriser). The thread
block in the configuration only selects the store backend and naming. On the thread handler's chat
routes user_id is required, and a thread is auto-created on a session's first request. Sending
thread_name on any chat request sets or renames the thread's display name and locks it against automatic
naming. Threads created without an explicit thread_name are
named by a pluggable naming strategy — by default an LLM call derives a concise title from the first prompt
(falling back to a prefix of the prompt when litellm or an API key is unavailable). Attachments in thread
mode additionally require multimodal.enabled: true with a shared attachment store (in_memory, redis, or
dynamodb — session_cache is rejected). See examples/api/thread-openai and
examples/api/multimodal/thread-openai.
-
Field:
thread.type -
Type: string
-
Options:
in_memory,redis,valkey,dynamodb(AWS),firestore(GCP),cosmosdb(Azure) -
Default:
in_memory -
Environment Variable:
AK_THREAD__TYPE -
Naming Model
- Field:
thread.naming.model - Type: string
- Default:
gpt-4o-mini - Description: LiteLLM model used to generate thread names (requires the
threadextra —pip install "agentkernel[thread]"— and an API key in the environment; falls back to a truncated prompt prefix otherwise) - Environment Variable:
AK_THREAD__NAMING__MODEL
- Field:
-
Auto-name Max Length
- Field:
thread.naming.max_length - Type: integer
- Default:
80 - Description: Maximum length of an auto-generated thread name
- Environment Variable:
AK_THREAD__NAMING__MAX_LENGTH
- Field:
Redis Thread Store
Required when thread.type=redis:
-
URL
- Field:
thread.redis.url - Default:
redis://localhost:6379 - Description: Redis connection URL. Use
rediss://for SSL - Environment Variable:
AK_THREAD__REDIS__URL
- Field:
-
TTL (Time to Live)
- Field:
thread.redis.ttl - Default:
2592000(30 days) - Description: Thread TTL in seconds (0 disables)
- Environment Variable:
AK_THREAD__REDIS__TTL
- Field:
-
Key Prefix
- Field:
thread.redis.prefix - Default:
ak:thread: - Description: Key prefix for Redis thread storage
- Environment Variable:
AK_THREAD__REDIS__PREFIX
- Field:
Valkey Thread Store
Required when thread.type=valkey. Requires the valkey extra (pip install "agentkernel[valkey]"):
-
URL
- Field:
thread.valkey.url - Default:
valkey://localhost:6379 - Description: Valkey connection URL. Use
valkeys://for SSL - Environment Variable:
AK_THREAD__VALKEY__URL
- Field:
-
TTL (Time to Live)
- Field:
thread.valkey.ttl - Default:
2592000(30 days) - Description: Thread TTL in seconds (0 disables)
- Environment Variable:
AK_THREAD__VALKEY__TTL
- Field:
-
Key Prefix
- Field:
thread.valkey.prefix - Default:
ak:thread: - Description: Key prefix for Valkey thread storage
- Environment Variable:
AK_THREAD__VALKEY__PREFIX
- Field:
DynamoDB Thread Store
Used when thread.type=dynamodb:
-
Table Name
- Field:
thread.dynamodb.table_name - Default:
ak-agent-threads - Description: DynamoDB table name. The table must have a partition key named
session_id(S) and a sort key namedsk(S) - Environment Variable:
AK_THREAD__DYNAMODB__TABLE_NAME
- Field:
-
TTL (Time to Live)
- Field:
thread.dynamodb.ttl - Default:
0(disabled) - Description: DynamoDB item TTL in seconds
- Environment Variable:
AK_THREAD__DYNAMODB__TTL
- Field:
Firestore Thread Store
Used when thread.type=firestore:
-
Collection Name
- Field:
thread.firestore.collection_name - Default:
ak-agent-threads - Description: Firestore collection name; each document ID is a
session_id - Environment Variable:
AK_THREAD__FIRESTORE__COLLECTION_NAME
- Field:
-
Project ID
- Field:
thread.firestore.project_id - Default:
null(inferred from Application Default Credentials) - Environment Variable:
AK_THREAD__FIRESTORE__PROJECT_ID
- Field:
-
Database ID
- Field:
thread.firestore.database_id - Default:
null(the(default)database) - Environment Variable:
AK_THREAD__FIRESTORE__DATABASE_ID
- Field:
-
TTL (Time to Live)
- Field:
thread.firestore.ttl - Default:
0(disabled) - Description: Thread TTL in seconds
- Environment Variable:
AK_THREAD__FIRESTORE__TTL
- Field:
Cosmos DB Thread Store
Required when thread.type=cosmosdb:
-
Connection String
- Field:
thread.cosmosdb.connection_string - Description: Cosmos DB connection string (Azure Portal → Keys). Uses the Table API; entities are partitioned by
session_id. No TTL support - Environment Variable:
AK_THREAD__COSMOSDB__CONNECTION_STRING
- Field:
-
Table Name
- Field:
thread.cosmosdb.table_name - Default:
akagentthreads - Description: Cosmos DB table name for thread storage
- Environment Variable:
AK_THREAD__COSMOSDB__TABLE_NAME
- Field:
Scheduling
The presence of a schedule block enables deferred and recurring chat execution: a chat request carrying a
schedule block (at for one-time, cron for recurring, plus timezone and session_mode) is not run —
it is registered as a scheduled task and acknowledged with HTTP 202. When an occurrence is due, the provider
delivers the stored prompt into the input queue as a plain chat request, so scheduling requires the queue
execution pipeline. The block also injects five agent tools (create_schedule, list_schedules,
get_schedule, update_schedule, delete_schedule). The management routes
(GET/PUT/DELETE /api/v1/schedules) are not mounted from config: the application mounts
ScheduleRESTRequestHandler itself — IOHandler.run(handlers=[ScheduleRESTRequestHandler()]) —
passing an optional pluggable Authoriser to the handler to protect them. Every scheduling request
needs a user_id: it is the owner the task is stored under and the identity later reads and changes
are checked against. A bare schedule: block works for local development — its defaults are the
local provider and the in_memory store. See examples/api/schedule-openai.
-
Provider Type
- Field:
schedule.provider.type - Type: string
- Default:
local - Options:
local(in-process scheduler thread; requires thein_memorytransport and store),eventbridge(AWS EventBridge Scheduler; requires thesqstransport and theawsextra), or a dotted path to aScheduleProvidersubclass - Environment Variable:
AK_SCHEDULE__PROVIDER__TYPE
- Field:
-
Store Type
- Field:
schedule.store.type - Type: string
- Default:
in_memory - Options:
in_memory,redis,valkey,dynamodb, or a dotted path to aScheduleStoresubclass - Environment Variable:
AK_SCHEDULE__STORE__TYPE
- Field:
-
Tool Scoping
- Field:
schedule.agents - Type: list of strings
- Default:
null(all agents) - Description: Agent names the schedule tools and system-prompt guidance attach to
- Environment Variable:
AK_SCHEDULE__AGENTS
- Field:
EventBridge Scheduler Provider
Required when schedule.provider.type=eventbridge. All three are supplied by the AWS Terraform modules
when enable_scheduling = true; a missing one fails at startup with an AKConfigError.
-
Group Name
- Field:
schedule.provider.eventbridge.group_name - Description: EventBridge Scheduler schedule-group name the schedules are created in
- Environment Variable:
AK_SCHEDULE__PROVIDER__EVENTBRIDGE__GROUP_NAME
- Field:
-
Role ARN
- Field:
schedule.provider.eventbridge.role_arn - Description: Execution role ARN Scheduler assumes to deliver triggers to the input queue
- Environment Variable:
AK_SCHEDULE__PROVIDER__EVENTBRIDGE__ROLE_ARN
- Field:
-
Queue ARN
- Field:
schedule.provider.eventbridge.queue_arn - Description: Input queue ARN used as the schedule target
- Environment Variable:
AK_SCHEDULE__PROVIDER__EVENTBRIDGE__QUEUE_ARN
- Field:
Redis / Valkey Schedule Store
Required when schedule.store.type=redis (or valkey, with schedule.store.valkey.* / AK_SCHEDULE__STORE__VALKEY__*).
-
URL
- Field:
schedule.store.redis.url - Default:
redis://localhost:6379 - Description: Redis connection URL. Use
rediss://for SSL - Environment Variable:
AK_SCHEDULE__STORE__REDIS__URL
- Field:
-
Key Prefix
- Field:
schedule.store.redis.prefix - Default:
ak:schedule: - Description: Key prefix for scheduled-task storage
- Environment Variable:
AK_SCHEDULE__STORE__REDIS__PREFIX
- Field:
-
TTL (Time to Live)
- Field:
schedule.store.redis.ttl - Default:
0(disabled) - Description: Scheduled task TTL in seconds. Unlike threads this defaults to 0 — a task that silently expired would stop firing with no audit trail
- Environment Variable:
AK_SCHEDULE__STORE__REDIS__TTL
- Field:
DynamoDB Schedule Store
Required when schedule.store.type=dynamodb. The table needs a partition key named task_id (S) and no
sort key; the AWS Terraform modules create it when create_dynamodb_schedule_table = true.
-
Table Name
- Field:
schedule.store.dynamodb.table_name - Default:
ak-agent-schedules - Description: DynamoDB table name for scheduled-task storage
- Environment Variable:
AK_SCHEDULE__STORE__DYNAMODB__TABLE_NAME
- Field:
-
TTL (Time to Live)
- Field:
schedule.store.dynamodb.ttl - Default:
0(disabled) - Description: DynamoDB item TTL in seconds
- Environment Variable:
AK_SCHEDULE__STORE__DYNAMODB__TTL
- Field:
Execution Configuration
Configure queue-backed and serverless execution behavior.
-
Execution Mode
- Field:
execution.mode - Options:
rest_sync,rest_async,stream,async - Default:
None - Description: Selects the execution mode used for queue-backed and serverless request handling
- Environment Variable:
AK_EXECUTION__MODE
- Field:
-
Queues
-
Field:
execution.queues -
Description: Queue settings used by the queue execution pipeline (in-process by default, or serverless/containerized backends)
-
Transport Type
- Field:
execution.queues.type - Options:
in_memory,sqs,kafka,nats, or a dotted path to aQueueTransportsubclass - Default: none — mandatory whenever an
execution.queuesblock is declared - Description: Queue transport used by the pipeline, and the only thing that selects it: queue coordinates are injected per component by a deployment, so they are never used to infer the transport. Declaring the block without a
typeis a configuration error. Omitting the block entirely leavesin_memory— a zero-dependency, in-process transport for local development and single-process deployments. - Environment Variable:
AK_EXECUTION__QUEUES__TYPE
- Field:
-
Input Queue URL
- Field:
execution.queues.input.url - Default:
None - Description: Input queue URL (
sqstransport only) - Environment Variable:
AK_EXECUTION__QUEUES__INPUT__URL
- Field:
-
Output Queue URL
- Field:
execution.queues.output.url - Default:
None - Description: Output queue URL (
sqstransport only) - Environment Variable:
AK_EXECUTION__QUEUES__OUTPUT__URL
- Field:
-
Input Queue Max Receive Count
- Field:
execution.queues.input.max_receive_count - Default:
3 - Environment Variable:
AK_EXECUTION__QUEUES__INPUT__MAX_RECEIVE_COUNT
- Field:
-
Output Queue Max Receive Count
- Field:
execution.queues.output.max_receive_count - Default:
3 - Environment Variable:
AK_EXECUTION__QUEUES__OUTPUT__MAX_RECEIVE_COUNT
- Field:
-
Input Queue Consumer Count
- Field:
execution.queues.input.no_of_consumers - Default:
5 - Description: Number of independent consumer threads that each poll the input queue in a continuous loop. Used by the in-process pipeline (agent-runner worker threads) and by ECS containerized deployments; not used in serverless (Lambda) mode, which has no consumer threads.
- Environment Variable:
AK_EXECUTION__QUEUES__INPUT__NO_OF_CONSUMERS
- Field:
-
Output Queue Consumer Count
- Field:
execution.queues.output.no_of_consumers - Default:
5 - Description: Number of independent consumer threads that each poll the output queue in a continuous loop. Used by the in-process pipeline (response-handler worker threads) and by ECS containerized deployments; not used in serverless (Lambda) mode, which has no consumer threads.
- Environment Variable:
AK_EXECUTION__QUEUES__OUTPUT__NO_OF_CONSUMERS
- Field:
-
In-Memory Transport Ack Wait
- Field:
execution.queues.in_memory.ack_wait - Default:
300.0 - Description: Seconds an unacknowledged in-memory message stays invisible before redelivery. Redelivery rescues stuck worker threads; keep this above your longest expected agent run or a slow run will be executed again.
- Field:
-
In-Memory Transport Dedup Window
- Field:
execution.queues.in_memory.dedup_window - Default:
300.0 - Description: Seconds within which a repeated
message_deduplication_idis dropped
- Field:
-
Kafka Bootstrap Servers
- Field:
execution.queues.kafka.bootstrap_servers - Default:
localhost:9092 - Description: Kafka bootstrap servers (host:port, comma-separated)
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__BOOTSTRAP_SERVERS
- Field:
-
Kafka Input Topic
- Field:
execution.queues.kafka.input_topic - Default:
agent-input - Description: Topic carrying chat requests
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__INPUT_TOPIC
- Field:
-
Kafka Output Topic
- Field:
execution.queues.kafka.output_topic - Default:
agent-output - Description: Topic carrying agent replies
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__OUTPUT_TOPIC
- Field:
-
Kafka Consumer Group Id
- Field:
execution.queues.kafka.group_id - Default:
agent-kernel - Description: Consumer group id prefix; the input and output consumers append their queue name to it
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__GROUP_ID
- Field:
-
Kafka Dead-Letter Topic Suffix
- Field:
execution.queues.kafka.dlq_suffix - Default:
.dlq - Description: Suffix appended to a topic name for its dead-letter topic, where permanently failed records are routed
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__DLQ_SUFFIX
- Field:
-
Kafka Retry Backoff
- Field:
execution.queues.kafka.retry_backoff - Default:
2.0 - Description: Seconds to wait before an in-process retry of a failed record
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__RETRY_BACKOFF
- Field:
-
Kafka Delivery Timeout
- Field:
execution.queues.kafka.delivery_timeout - Default:
30.0 - Description: Seconds to wait for the broker to confirm a produced message before failing the send
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__DELIVERY_TIMEOUT
- Field:
-
Kafka Metadata Timeout
- Field:
execution.queues.kafka.metadata_timeout - Default:
5.0 - Description: Seconds to wait for topic metadata during the startup partition-capacity check (the check is skipped on timeout)
- Environment Variable:
AK_EXECUTION__QUEUES__KAFKA__METADATA_TIMEOUT
- Field:
-
Kafka Client Config
- Field:
execution.queues.kafka.client_config - Default:
{} - Description: Passthrough settings merged into the
confluent-kafkaproducer and consumer configs (SASL, TLS, tuning); set viaconfig.yaml, not individually exported as environment variables
- Field:
-
NATS Server URL
- Field:
execution.queues.nats.url - Default:
nats://localhost:4222 - Description: NATS server URL (comma-separated for a cluster)
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__URL
- Field:
-
NATS Input Stream
- Field:
execution.queues.nats.input_stream - Default:
AGENT_REQUESTS - Description: JetStream stream carrying chat requests
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__INPUT_STREAM
- Field:
-
NATS Input Subject Prefix
- Field:
execution.queues.nats.input_subject_prefix - Default:
chat.req - Description: Subject prefix for chat requests
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__INPUT_SUBJECT_PREFIX
- Field:
-
NATS Output Stream
- Field:
execution.queues.nats.output_stream - Default:
AGENT_REPLIES - Description: JetStream stream carrying agent replies
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__OUTPUT_STREAM
- Field:
-
NATS Output Subject Prefix
- Field:
execution.queues.nats.output_subject_prefix - Default:
chat.out - Description: Subject prefix for agent replies
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__OUTPUT_SUBJECT_PREFIX
- Field:
-
NATS Partitions
- Field:
execution.queues.nats.partitions - Default:
32 - Description: Number of partition subjects per stream, each served by its own durable consumer. Sessions hash to a partition, so this caps how many messages can be in flight at once: keep it at or above
no_of_consumersx replicas. Changing it re-maps sessions, so size it up front (idle partitions cost almost nothing) - Environment Variable:
AK_EXECUTION__QUEUES__NATS__PARTITIONS
- Field:
-
NATS Ack Wait
- Field:
execution.queues.nats.ack_wait - Default:
300.0 - Description: Seconds the server waits for an acknowledgement before redelivering. Must exceed your longest agent turn: a turn that outlives it is redelivered and executed a second time
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__ACK_WAIT
- Field:
-
NATS Retry Backoff
- Field:
execution.queues.nats.retry_backoff - Default:
2.0 - Description: Seconds to delay a redelivery after a failed message (nak delay)
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__RETRY_BACKOFF
- Field:
-
NATS Duplicate Window
- Field:
execution.queues.nats.duplicate_window - Default:
300.0 - Description: Seconds within which a repeated dedup id is dropped by the stream (SQS parity)
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__DUPLICATE_WINDOW
- Field:
-
NATS Max Age
- Field:
execution.queues.nats.max_age - Default:
86400.0 - Description: Seconds before an unconsumed message is discarded. A safety net: work-queue messages are otherwise kept forever
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__MAX_AGE
- Field:
-
NATS Request Timeout
- Field:
execution.queues.nats.request_timeout - Default:
10.0 - Description: Seconds to wait for a NATS request (publish, ack, management call) to complete
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__REQUEST_TIMEOUT
- Field:
-
NATS Auto Provision
- Field:
execution.queues.nats.auto_provision - Default:
false - Description: Create the streams and per-partition consumers at startup if missing. Convenient for local and dev clusters; leave false in production, where the objects are managed declaratively (NACK CRs) and a missing object should fail loudly instead of being created with defaults
- Environment Variable:
AK_EXECUTION__QUEUES__NATS__AUTO_PROVISION
- Field:
-
Queue Batch Size
- Field:
execution.queues.batch_size - Default:
None - Description: Max number of messages fetched per receive call, shared by the input and output queues. Only used by containerized deployments — never set for serverless deployments, which control batch size differently. Controlled by the deployment tooling via env var
AK_EXECUTION__QUEUES__BATCH_SIZE— do not set inconfig.yaml. - Environment Variable:
AK_EXECUTION__QUEUES__BATCH_SIZE
- Field:
-
-
Response Store
-
Field:
execution.response_store -
Description: Response persistence settings used by the serverless response handler
-
Type
- Field:
execution.response_store.type - Options:
in_memory,redis,valkey,dynamodb, or a dotted path to aResponseStoresubclass - Description: Response store backend selector configured in
config.yaml; this value is not exported as an environment variable. Defaults to an in-processin_memorystore when unset and no other backend is configured.
- Field:
-
Retry Count
- Field:
execution.response_store.retry_count - Default:
5 - Description: Number of lookup attempts when polling for a response
- Environment Variable:
AK_EXECUTION__RESPONSE_STORE__RETRY_COUNT
- Field:
-
Delay
- Field:
execution.response_store.delay - Default:
5 - Description: Delay in seconds between response lookup attempts
- Environment Variable:
AK_EXECUTION__RESPONSE_STORE__DELAY
- Field:
-
Redis Backend
- Field:
execution.response_store.redis - Environment Variables:
AK_EXECUTION__RESPONSE_STORE__REDIS__URL,AK_EXECUTION__RESPONSE_STORE__REDIS__PREFIX,AK_EXECUTION__RESPONSE_STORE__REDIS__TTL
- Field:
-
Valkey Backend
- Field:
execution.response_store.valkey - Environment Variables:
AK_EXECUTION__RESPONSE_STORE__VALKEY__URL,AK_EXECUTION__RESPONSE_STORE__VALKEY__PREFIX,AK_EXECUTION__RESPONSE_STORE__VALKEY__TTL - Description: Valkey-backed response storage (requires the
agentkernel[valkey]extra)
- Field:
-
DynamoDB Backend
- Field:
execution.response_store.dynamodb - Environment Variables:
AK_EXECUTION__RESPONSE_STORE__DYNAMODB__TABLE_NAME,AK_EXECUTION__RESPONSE_STORE__DYNAMODB__TTL - Description: DynamoDB-backed response storage with table name and TTL
- Field:
-
Use the built-in in_memory response store for local development and single-process deployments (zero extra services required), or Redis, Valkey, or DynamoDB for distributed/serverless deployments. The runtime accepts BaseRunRequest payloads directly, normalizes them internally when queueing is required, and uses request_id plus optional user_id as queue message attributes.
API Configuration
Configure the REST API server (if using the API module).
-
Host
- Field:
api.host - Default:
0.0.0.0 - Environment Variable:
AK_API__HOST
- Field:
-
Port
- Field:
api.port - Default:
8000 - Environment Variable:
AK_API__PORT
- Field:
-
Custom Router Prefix
- Field:
api.custom_router_prefix - Default:
/custom - Environment Variable:
AK_API__CUSTOM_ROUTER_PREFIX
- Field:
-
Enabled Routes
- Field:
api.enabled_routes.agents - Default:
true - Description: Enable agent interaction routes
- Environment Variable:
AK_API__ENABLED_ROUTES__AGENTS
- Field:
A2A (Agent-to-Agent) Configuration
-
Enabled
- Field:
a2a.enabled - Default:
false - Environment Variable:
AK_A2A__ENABLED
- Field:
-
Agents
- Field:
a2a.agents - Default:
["*"] - Description: List of agent names to enable A2A (use
["*"]for all) - Environment Variable:
AK_A2A__AGENTS(comma-separated)
- Field:
-
URL
- Field:
a2a.url - Default:
http://localhost:8000/a2a - Environment Variable:
AK_A2A__URL
- Field:
-
Task Store Type
- Field:
a2a.task_store_type - Options:
in_memory,redis - Default:
in_memory - Environment Variable:
AK_A2A__TASK_STORE_TYPE
- Field:
MCP (Model Context Protocol) Configuration
-
Enabled
- Field:
mcp.enabled - Default:
false - Environment Variable:
AK_MCP__ENABLED
- Field:
-
Expose Agents
- Field:
mcp.expose_agents - Default:
false - Description: Expose agents as MCP tools
- Environment Variable:
AK_MCP__EXPOSE_AGENTS
- Field:
-
Agents
- Field:
mcp.agents - Default:
["*"] - Description: List of agent names to expose as MCP tools
- Environment Variable:
AK_MCP__AGENTS(comma-separated)
- Field:
-
Stateless HTTP
- Field:
mcp.stateless_http - Default:
false - Description: Run MCP in stateless HTTP mode (no
Mcp-Session-Id) - Environment Variable:
AK_MCP__STATELESS_HTTP
- Field:
-
Endpoint (not configurable)
- The MCP server is always mounted at
/mcpon the main API server. - Full URL:
http://{api.host}:{api.port}/mcp— useapi.port/AK_API__PORTto change the port.
- The MCP server is always mounted at
AG-UI Configuration
Mounting AGUIRequestHandler (from agentkernel.agui, requires the agentkernel[agui] extra — pip install "agentkernel[agui]") is what enables the AG-UI protocol
surface; the agui block only parameterizes it, and it never switches the surface on by itself.
AGUIRequestHandler refuses to construct without an Authoriser or AuthValidator — AG-UI runs
agents on a caller's behalf and has no anonymous mode. Only agents whose runner declares
supports_streaming = True are reachable (currently OpenAI Agents SDK, LangGraph, Google ADK, and
Pydantic AI — not CrewAI or Smolagents). See examples/api/agui.
-
Agents
- Field:
agui.agents - Default: unset (every streaming-capable agent is reachable)
- Description: Agent names reachable over AG-UI
- Environment Variable:
AK_AGUI__AGENTS(comma-separated)
- Field:
-
Prefix
- Field:
agui.prefix - Default:
/agui - Description: Route prefix for the AG-UI surface
- Environment Variable:
AK_AGUI__PREFIX
- Field:
-
Default Agent
- Field:
agui.default_agent - Default: unset
- Description: Agent served on the bare prefix route (
POST {prefix}, in addition toPOST {prefix}/{agent_name}); must be one ofagui.agentswhen that list is set - Environment Variable:
AK_AGUI__DEFAULT_AGENT
- Field:
-
State Tools
- Field:
agui.state.enabled - Default:
false - Description: Attach
get_agui_state/update_agui_state, giving agents read/write access to AG-UI's shared JSON state (aStateSnapshotis streamed back only when the state actually changed) - Environment Variable:
AK_AGUI__STATE__ENABLED - Field:
agui.state.agents - Default: unset (every agent gets the tools)
- Environment Variable:
AK_AGUI__STATE__AGENTS(comma-separated)
- Field:
-
Client Context Tools
- Field:
agui.client_context.enabled - Default:
false - Description: Attach the read-only
get_forwarded_props/get_agui_contexttools over a run'sforwardedPropsandcontextfields; never injected into the prompt automatically - Environment Variable:
AK_AGUI__CLIENT_CONTEXT__ENABLED - Field:
agui.client_context.agents - Default: unset (every agent gets the tools)
- Environment Variable:
AK_AGUI__CLIENT_CONTEXT__AGENTS(comma-separated)
- Field:
Trace (Observability) Configuration
Configure tracing and observability for monitoring agent execution.
-
Enabled
- Field:
trace.enabled - Default:
false - Description: Enable tracing/observability
- Environment Variable:
AK_TRACE__ENABLED
- Field:
-
Type
- Field:
trace.type - Options:
langfuse,openllmetry,logfire - Default:
langfuse - Description: Type of tracing provider to use
- Environment Variable:
AK_TRACE__TYPE
- Field:
Langfuse Setup:
To use Langfuse for tracing, install the langfuse extra:
pip install agentkernel[langfuse]
Configure Langfuse credentials via environment variables:
export LANGFUSE_PUBLIC_KEY=pk-lf-...
export LANGFUSE_SECRET_KEY=sk-lf-...
export LANGFUSE_HOST=https://cloud.langfuse.com # or your self-hosted instance
Enable tracing in your configuration:
trace:
enabled: true
type: langfuse
OpenLLMetry (Traceloop) Setup:
To use OpenLLMetry for tracing, install the openllmetry extra:
pip install agentkernel[openllmetry]
Configure Traceloop credentials via environment variables:
export TRACELOOP_API_KEY=your-api-key
export TRACELOOP_BASE_URL=https://api.traceloop.com # Optional: for self-hosted
Enable tracing in your configuration:
trace:
enabled: true
type: openllmetry
Pydantic Logfire Setup:
To use Logfire for tracing, install the logfire extra:
pip install agentkernel[logfire]
Configure the Logfire write token via an environment variable (optional — without a token, Logfire runs locally and does not ship traces):
export LOGFIRE_TOKEN=your-write-token
Enable tracing in your configuration:
trace:
enabled: true
type: logfire
Test Configuration
Configure test comparison modes for automated testing. Test configuration is separate from the application configuration: it is not part of config.yaml. It lives in its own test-config.yaml file and is only loaded when the testing utilities (agentkernel.test) are used — see the Test Configuration (test-config.yaml) section for file resolution, environment variables, and migration notes.
-
Mode
- Field:
mode - Options:
score,llm,fallback - Default:
fallback - Description: Test comparison mode
- Environment Variable:
AK_TEST__MODE
- Field:
-
Evaluator
- Field:
evaluator - Default:
deepeval - Description: Built-in evaluator short name, or a dotted path to your own
AKEvaluatorsubclass - Environment Variable:
AK_TEST__EVALUATOR
- Field:
-
Llm Model
- Field:
llm.model - Default:
gpt-4o-mini - Description: LLM model for llm evaluation
- Environment Variable:
AK_TEST__LLM__MODEL
- Field:
-
Llm Provider
- Field:
llm.provider - Default:
openai - Description: LLM provider for llm evaluation
- Environment Variable:
AK_TEST__LLM__PROVIDER
- Field:
-
Llm Embedding Model
- Field:
llm.embedding_model - Default:
text-embedding-3-small - Description: Embedding model, unconsumed by any built-in v1 metric
- Environment Variable:
AK_TEST__LLM__EMBEDDING_MODEL
- Field:
Test Modes:
score: Deterministic, offline string-match scoring via the configured evaluator (built-in DeepEval evaluator:Scorer.quasi_exact_match_score)llm: LLM-as-judge evaluation via the configured evaluator (built-in DeepEval evaluator:GEval) for semantic similarityfallback: Tries score first, falls back to llm if score fails
# test-config.yaml (separate file — not config.yaml)
mode: fallback
evaluator: deepeval
llm:
model: gpt-4o-mini
provider: openai
embedding_model: text-embedding-3-small
Guardrails Configuration
Configure input and output guardrails to validate agent requests and responses for safety and compliance.
-
Input Guardrails
-
Enabled
- Field:
guardrail.input.enabled - Default:
false - Description: Enable input validation guardrails
- Environment Variable:
AK_GUARDRAIL__INPUT__ENABLED
- Field:
-
Type
- Field:
guardrail.input.type - Default:
openai - Options:
openai,bedrock,walledai - Description: Guardrail provider type
- Environment Variable:
AK_GUARDRAIL__INPUT__TYPE
- Field:
-
Config Path
- Field:
guardrail.input.config_path - Default:
None - Description: Path to guardrail configuration JSON file (OpenAI only)
- Environment Variable:
AK_GUARDRAIL__INPUT__CONFIG_PATH
- Field:
-
Model
- Field:
guardrail.input.model - Default:
gpt-4o-mini - Description: LLM model to use for guardrail validation (OpenAI only)
- Environment Variable:
AK_GUARDRAIL__INPUT__MODEL
- Field:
-
ID
- Field:
guardrail.input.id - Default:
None - Description: AWS Bedrock guardrail ID (Bedrock only)
- Environment Variable:
AK_GUARDRAIL__INPUT__ID
- Field:
-
Version
- Field:
guardrail.input.version - Default:
DRAFT - Description: AWS Bedrock guardrail version (Bedrock only)
- Environment Variable:
AK_GUARDRAIL__INPUT__VERSION
- Field:
-
-
Output Guardrails
-
Enabled
- Field:
guardrail.output.enabled - Default:
false - Description: Enable output validation guardrails
- Environment Variable:
AK_GUARDRAIL__OUTPUT__ENABLED
- Field:
-
Type
- Field:
guardrail.output.type - Default:
openai - Options:
openai,bedrock,walledai - Description: Guardrail provider type
- Environment Variable:
AK_GUARDRAIL__OUTPUT__TYPE
- Field:
-
Config Path
- Field:
guardrail.output.config_path - Default:
None - Description: Path to guardrail configuration JSON file (OpenAI only)
- Environment Variable:
AK_GUARDRAIL__OUTPUT__CONFIG_PATH
- Field:
-
Model
- Field:
guardrail.output.model - Default:
gpt-4o-mini - Description: LLM model to use for guardrail validation (OpenAI only)
- Environment Variable:
AK_GUARDRAIL__OUTPUT__MODEL
- Field:
-
ID
- Field:
guardrail.output.id - Default:
None - Description: AWS Bedrock guardrail ID (Bedrock only)
- Environment Variable:
AK_GUARDRAIL__OUTPUT__ID
- Field:
-
Version
- Field:
guardrail.output.version - Default:
DRAFT - Description: AWS Bedrock guardrail version (Bedrock only)
- Environment Variable:
AK_GUARDRAIL__OUTPUT__VERSION
- Field:
-
Guardrail Setup:
To use OpenAI guardrails, install the openai-guardrails package:
pip install agentkernel[openai]
To use AWS Bedrock guardrails, install the AWS package:
pip install agentkernel[aws]
To use Walled AI guardrails, install the Walled AI package:
pip install agentkernel[walledai]
Create guardrail configuration:
For OpenAI: Create configuration files following the OpenAI Guardrails format.
For Bedrock: Create a guardrail in AWS Bedrock and note the guardrail ID and version.
For Walled AI: Set WALLED_API_KEY, use guardrail type walledai, and control PII masking with pii.
Configure guardrails in your configuration:
OpenAI Example:
guardrail:
input:
enabled: true
type: openai
model: gpt-4o-mini
config_path: /path/to/guardrails_input.json
output:
enabled: true
type: openai
model: gpt-4o-mini
config_path: /path/to/guardrails_output.json
Bedrock Example:
guardrail:
input:
enabled: true
type: bedrock
id: your-guardrail-id
version: "1" # or "DRAFT"
output:
enabled: true
type: bedrock
id: your-guardrail-id
version: "1"
Walled AI Example:
guardrail:
input:
enabled: true
type: walledai
pii: true
output:
enabled: true
type: walledai
pii: true
Sandbox Configuration
Enable the sandbox capability to let agents execute code and shell commands in an isolated,
permission-bounded environment. When enabled, agents automatically gain sandbox tools
(run_code, run_command, write_sandbox_file, read_sandbox_file, check_sandbox_task,
list_sandbox_sessions, new_sandbox_session, destroy_sandbox_session) and the usage
guidance is injected into their system prompt.
Minimal single-backend form (a default profile is synthesized from type + its config block):
sandbox:
enabled: true
type: local_subprocess # provider short name, or a dotted path to a SandboxProvider subclass
local_subprocess: {}
broker:
flavor: thread # thread (local default) | embedded
Full form with explicit workload profiles (provider + lifetime + policy + identity):
sandbox:
enabled: true
agents: [coder] # optional: attach tools/prompt only to these agents; omit = all
default_profile: workspace
principal_resolver: null # optional dotted path to a PrincipalResolver; null = agent identity
tool_output_max_chars: 8000
broker:
flavor: thread
wait_timeout: 60.0 # seconds before a sync wait promotes to a background task (0 = always)
profiles:
workspace:
type: docker # container-isolated; needs the sandbox-docker extra + a Docker daemon
scope: per_session # per_call | per_session | per_runtime
idle_timeout: 1800 # seconds of inactivity before the sandbox is reset on next touch
identity:
mode: agent # agent | user
policy:
network_egress: deny # allow | deny | allowlist
cpu: 1.0
memory_mb: 512
timeout: 30.0 # per-execution wall-clock seconds (always enforced)
strict: true # fail closed when the provider can't enforce a policy dimension
docker:
image: python:3.12-slim
Key fields:
enabled(AK_SANDBOX__ENABLED, defaultfalse) — master switch; inert when off.agents— agent names the tools/prompt attach to; omit for all agents.type(per profile) —local_subprocess(no isolation; dev/test),docker(container isolation;sandbox-dockerextra),e2b(managed micro-VMs;e2bextra),daytona(cloud containers;daytonaextra),ec2_ssm(attach to an existing EC2 instance via SSM;awsextra), or a dotted path to your ownSandboxProvider.scope—per_call(fresh per execution),per_session(persists across turns),per_runtime(one shared sandbox per profile).environment—managed(default; the provider creates and disposes sandboxes) orattached(deliberately connect to an existing environment the framework never owns, e.g. an EC2 instance viaec2_ssm; requires the provider'sattach_toand is validated against the provider's lifecycle capabilities at startup).policy— network egress, filesystem paths, cpu/memory, timeout; enforced per provider, fail-closed understrict.identity.mode+principal_resolver— run code under the agent's or the invoking user's identity.broker.flavor—thread(default, for CLI/REST) orembedded(inline/synchronous).
See the Sandbox guide for the full
reference and the examples/sandbox and examples/sandbox/identity examples.
Messaging Platform Integrations
Configure integrations with messaging platforms.
Slack
-
Agent
- Field:
slack.agent - Default:
"" - Description: Default agent for Slack interactions
- Environment Variable:
AK_SLACK__AGENT
- Field:
-
Agent Acknowledgement
- Field:
slack.agent_acknowledgement - Default:
"" - Description: Acknowledgement message when Slack message is received
- Environment Variable:
AK_SLACK__AGENT_ACKNOWLEDGEMENT
- Field:
-
Agent
- Field:
whatsapp.agent - Default:
"" - Description: Default agent for WhatsApp interactions
- Environment Variable:
AK_WHATSAPP__AGENT
- Field:
-
Verify Token, Access Token, App Secret, Phone Number ID, API Version
- Environment Variables:
AK_WHATSAPP__VERIFY_TOKEN,AK_WHATSAPP__ACCESS_TOKEN,AK_WHATSAPP__APP_SECRET,AK_WHATSAPP__PHONE_NUMBER_ID,AK_WHATSAPP__API_VERSION
- Environment Variables:
Facebook Messenger
-
Agent
- Field:
messenger.agent - Default:
"" - Description: Default agent for Facebook Messenger interactions
- Environment Variable:
AK_MESSENGER__AGENT
- Field:
-
Verify Token, Access Token, App Secret, API Version
- Environment Variables:
AK_MESSENGER__VERIFY_TOKEN,AK_MESSENGER__ACCESS_TOKEN,AK_MESSENGER__APP_SECRET,AK_MESSENGER__API_VERSION
- Environment Variables:
-
Agent
- Field:
instagram.agent - Default:
"" - Description: Default agent for Instagram interactions
- Environment Variable:
AK_INSTAGRAM__AGENT
- Field:
-
Instagram Account ID, Verify Token, Access Token, App Secret, API Version
- Environment Variables:
AK_INSTAGRAM__INSTAGRAM_ACCOUNT_ID,AK_INSTAGRAM__VERIFY_TOKEN,AK_INSTAGRAM__ACCESS_TOKEN,AK_INSTAGRAM__APP_SECRET,AK_INSTAGRAM__API_VERSION
- Environment Variables:
Telegram
-
Agent
- Field:
telegram.agent - Default:
"" - Description: Default agent for Telegram interactions
- Environment Variable:
AK_TELEGRAM__AGENT
- Field:
-
Bot Token, Webhook Secret, API Version
- Environment Variables:
AK_TELEGRAM__BOT_TOKEN,AK_TELEGRAM__WEBHOOK_SECRET,AK_TELEGRAM__API_VERSION
- Environment Variables:
Microsoft Teams
-
Agent
- Field:
teams.agent - Default:
"" - Description: Default agent for Microsoft Teams interactions
- Environment Variable:
AK_TEAMS__AGENT
- Field:
-
Agent Acknowledgement
- Field:
teams.agent_acknowledgement - Default:
"" - Description: Message sent as an acknowledgement when a Teams message is received
- Environment Variable:
AK_TEAMS__AGENT_ACKNOWLEDGEMENT
- Field:
-
App ID, App Password
- Description: Azure Bot / Entra ID application (client) ID and client secret. Both are required
- Environment Variables:
AK_TEAMS__APP_ID,AK_TEAMS__APP_PASSWORD
-
Tenant ID
- Field:
teams.tenant_id - Default:
"" - Description: Entra ID tenant that owns the bot's app registration. Required only for a single-tenant registration, whose channel tokens must be issued by its own tenant; leave empty for a multi-tenant bot. Also the fallback tenant for the app-only token used to download attachments whose URL is not pre-authenticated, when the incoming activity carries none
- Environment Variable:
AK_TEAMS__TENANT_ID
- Field:
Gmail
-
Agent
- Field:
gmail.agent - Default:
"general" - Description: Default agent for Gmail interactions
- Environment Variable:
AK_GMAIL__AGENT
- Field:
-
Client ID, Client Secret, Token File, Poll Interval, Label Filter
- Environment Variables:
AK_GMAIL__CLIENT_ID,AK_GMAIL__CLIENT_SECRET,AK_GMAIL__TOKEN_FILE,AK_GMAIL__POLL_INTERVAL,AK_GMAIL__LABEL_FILTER
- Environment Variables:
Configuration Examples
Environment Variables
Use the AK_ prefix and underscores for nested fields:
export AK_DEBUG=true
export AK_SESSION__TYPE=redis
export AK_SESSION__REDIS__URL=redis://localhost:6379
export AK_SESSION__REDIS__TTL=604800
export AK_SESSION__REDIS__PREFIX=ak:sessions:
export AK_API__HOST=0.0.0.0
export AK_API__PORT=8000
export AK_A2A__ENABLED=true
export AK_MCP__ENABLED=false
export AK_TRACE__ENABLED=true
export AK_TRACE__TYPE=langfuse # or openllmetry, logfire
# For Langfuse:
# export LANGFUSE_PUBLIC_KEY=pk-lf-...
# export LANGFUSE_SECRET_KEY=sk-lf-...
# export LANGFUSE_HOST=https://cloud.langfuse.com
# For OpenLLMetry:
# export TRACELOOP_API_KEY=your-api-key
# For Logfire:
# export LOGFIRE_TOKEN=your-write-token
# Test harness (loaded from the separate test-config.yaml — see Test Configuration)
export AK_TEST__MODE=fallback # Options: score, llm, fallback
export AK_TEST__EVALUATOR=deepeval # Built-in short name, or a dotted path to your own AKEvaluator subclass
export AK_TEST__LLM__MODEL=gpt-4o-mini
export AK_TEST__LLM__PROVIDER=openai
export AK_TEST__LLM__EMBEDDING_MODEL=text-embedding-3-small
# Guardrails configuration
export AK_GUARDRAIL__INPUT__ENABLED=false
export AK_GUARDRAIL__INPUT__TYPE=openai
export AK_GUARDRAIL__INPUT__MODEL=gpt-4o-mini
export AK_GUARDRAIL__INPUT__CONFIG_PATH=/path/to/guardrails_input.json
export AK_GUARDRAIL__OUTPUT__ENABLED=false
export AK_GUARDRAIL__OUTPUT__TYPE=openai
export AK_GUARDRAIL__OUTPUT__MODEL=gpt-4o-mini
export AK_GUARDRAIL__OUTPUT__CONFIG_PATH=/path/to/guardrails_output.json
# Walled AI guardrails
export WALLED_API_KEY=your-walledai-api-key
export AK_GUARDRAIL__INPUT__PII=true
export AK_GUARDRAIL__OUTPUT__PII=true
export AK_DEBUG=true
# Messaging platforms (optional)
export AK_SLACK__AGENT=my-agent
export AK_WHATSAPP__AGENT=my-agent
export AK_MESSENGER__AGENT=my-agent
export AK_INSTAGRAM__AGENT=my-agent
export AK_TELEGRAM__AGENT=my-agent
export AK_GMAIL__AGENT=my-agent
export AK_GMAIL__CLIENT_ID=your-google-client-id
export AK_GMAIL__CLIENT_SECRET=your-google-client-secret
.env File
Create a .env file in your working directory:
AK_DEBUG=false
AK_SESSION__TYPE=redis
AK_SESSION__REDIS__URL=rediss://my-redis:6379
AK_SESSION__REDIS__TTL=1209600
AK_SESSION__REDIS__PREFIX=ak:prod:sessions:
AK_API__HOST=0.0.0.0
AK_API__PORT=8080
AK_A2A__ENABLED=true
AK_A2A__URL=http://localhost:8080/a2a
AK_TRACE__ENABLED=true
AK_TRACE__TYPE=langfuse # or openllmetry, logfire
# Langfuse credentials (if using langfuse):
# LANGFUSE_PUBLIC_KEY=pk-lf-...
# LANGFUSE_SECRET_KEY=sk-lf-...
# LANGFUSE_HOST=https://cloud.langfuse.com
# OpenLLMetry credentials (if using openllmetry):
# TRACELOOP_API_KEY=your-api-key
# Logfire credentials (if using logfire):
# LOGFIRE_TOKEN=your-write-token
config.yaml
session:
type: redis
redis:
url: redis://localhost:6379
ttl: 604800
prefix: "ak:sessions:"
thread: # optional; configures Conversation Thread Support (enabled by mounting AgentThreadRequestHandler)
type: redis
redis:
url: redis://localhost:6379
ttl: 2592000
prefix: "ak:thread:"
execution:
mode: rest_sync
queues:
type: sqs # in_memory | sqs | kafka | nats, or a dotted path to a QueueTransport subclass — mandatory whenever this block is declared
input:
url: https://queue.example.com/<accountno>/<queuename> # sqs transport only
max_receive_count: 3
no_of_consumers: 5 # in-process pipeline + containerized deployments, ignored by serverless deployments
output:
url: https://queue.example.com/<accountno>/<queuename> # sqs transport only
max_receive_count: 3
no_of_consumers: 5 # in-process pipeline + containerized deployments, ignored by serverless deployments
# in_memory: {ack_wait: 300.0, dedup_window: 300.0} # in_memory transport settings, unused otherwise
# kafka: # kafka transport settings, unused otherwise
# bootstrap_servers: localhost:9092
# input_topic: agent-input
# output_topic: agent-output
# group_id: agent-kernel
# dlq_suffix: .dlq
# retry_backoff: 2.0
# delivery_timeout: 30.0
# metadata_timeout: 5.0
# client_config: {} # passthrough confluent-kafka producer/consumer settings (SASL, TLS, tuning)
# nats: # nats transport settings, unused otherwise
# url: nats://localhost:4222
# input_stream: AGENT_REQUESTS
# input_subject_prefix: chat.req
# output_stream: AGENT_REPLIES
# output_subject_prefix: chat.out
# partitions: 32
# ack_wait: 300.0
# retry_backoff: 2.0
# duplicate_window: 300.0
# max_age: 86400.0
# request_timeout: 10.0
# auto_provision: false # true for local/dev; leave false where NACK CRs own the objects
# batch_size is set by the deployment tooling — set via AK_EXECUTION__QUEUES__BATCH_SIZE, never here
response_store:
type: redis # in_memory | redis | valkey | dynamodb | dotted path — omit for the built-in in_memory store
retry_count: 5
delay: 5
redis: # if this is given, then valkey/dynamodb response store parts cannot be given
url: redis://localhost:6379
prefix: "ak:responses:"
ttl: 3600
valkey: # if this is given, then redis/dynamodb response store parts cannot be given (requires the `valkey` extra)
url: valkey://localhost:6379
prefix: "ak:responses:"
ttl: 3600
dynamodb: # if this is given, then redis/valkey response store parts cannot be given
table_name: table-name
table_arn: table-arn
ttl: 3600
api:
host: 0.0.0.0
port: 8000
enabled_routes:
agents: true
a2a:
enabled: true
agents: ["*"]
url: http://localhost:8000/a2a
task_store_type: in_memory
mcp:
enabled: false
expose_agents: false
agents: ["*"]
trace:
enabled: true
type: langfuse
# Note: test configuration is no longer set here — it lives in a separate
# test-config.yaml file (see the Test Configuration section)
guardrail:
input:
enabled: false
type: openai
pii: true
model: gpt-4o-mini
config_path: /path/to/guardrails_input.json
output:
enabled: false
type: openai
pii: true
model: gpt-4o-mini
config_path: /path/to/guardrails_output.json
# For Walled AI, set type: walledai, WALLED_API_KEY,
# and optionally use input/output pii (default: true) to enable/disable PII masking.
slack:
agent: my-agent
agent_acknowledgement: "Processing your request..."
whatsapp:
agent: my-agent
agent_acknowledgement: "Processing..."
messenger:
agent: my-agent
instagram:
agent: my-agent
telegram:
agent: my-agent
teams:
agent: my-agent
app_id: "<azure-app-client-id>"
app_password: "<azure-app-client-secret>"
gmail:
agent: my-agent
poll_interval: 30
label_filter: "INBOX"
config.json
{
"debug": false,
"session": {
"type": "redis",
"redis": {
"url": "redis://localhost:6379",
"ttl": 604800,
"prefix": "ak:sessions:"
}
},
"api": {
"host": "0.0.0.0",
"port": 8000,
"enabled_routes": {
"agents": true
}
},
"a2a": {
"enabled": true,
"agents": ["*"],
"url": "http://localhost:8000/a2a",
"task_store_type": "in_memory"
},
"mcp": {
"enabled": false,
"expose_agents": false,
"agents": ["*"]
},
"trace": {
"enabled": true,
"type": "langfuse"
},
"guardrail": {
"input": {
"enabled": false,
"type": "openai",
"model": "gpt-4o-mini",
"config_path": "/path/to/guardrails_input.json"
},
"output": {
"enabled": false,
"type": "openai",
"model": "gpt-4o-mini",
"config_path": "/path/to/guardrails_output.json"
}
},
"slack": {
"agent": "my-agent",
"agent_acknowledgement": "Processing your request..."
},
"whatsapp": {
"agent": "my-agent",
"agent_acknowledgement": "Processing..."
},
"messenger": {
"agent": "my-agent"
},
"instagram": {
"agent": "my-agent"
},
"telegram": {
"agent": "my-agent"
},
"teams": {
"agent": "my-agent",
"app_id": "<azure-app-client-id>",
"app_password": "<azure-app-client-secret>"
},
"gmail": {
"agent": "my-agent",
"poll_interval": 30,
"label_filter": "INBOX"
}
}
Configuration Notes
- Empty environment variables are ignored
- Unknown fields in files or environment variables are ignored
- Environment variables override configuration file values
- Configuration file values override built-in defaults
- Nested fields use underscore (
_) delimiter in environment variables
Test Configuration (test-config.yaml)
Test harness configuration (comparison mode, evaluator backend, llm models) is separate from the application configuration. It is not part of config.yaml — it lives in its own test-config.yaml file, resolved from the current working directory, and is only loaded when the testing utilities (agentkernel.test) are used. A legacy test: section in config.yaml is ignored. See Test Configuration under Configuration Options for the full list of fields and defaults.
test-config.yaml:
mode: fallback
evaluator: deepeval
llm:
model: gpt-4o-mini
provider: openai
embedding_model: text-embedding-3-small
Note that the file is un-nested — there is no top-level test: key. If the file is missing, defaults apply silently (score and fallback tests need no configuration file at all).
Override the test config file path:
export AK_TEST_CONFIG_PATH_OVERRIDE=/path/to/test-config.yaml
Environment variables use the AK_TEST__ prefix and override test-config.yaml values:
export AK_TEST__MODE=fallback # Options: score, llm, fallback
export AK_TEST__EVALUATOR=deepeval
export AK_TEST__LLM__MODEL=gpt-4o-mini
export AK_TEST__LLM__PROVIDER=openai
export AK_TEST__LLM__EMBEDDING_MODEL=text-embedding-3-small
Extensibility
Custom Framework Adapters
To add support for a new framework:
- Implement a
Runnerclass for your framework - Create an
Agentwrapper class - Create a
Moduleclass that registers agents with the Runtime
Example structure:
from agentkernel.core import Agent, Runner, Module
class MyFrameworkRunner(Runner):
def run(self, agent, prompt, session):
# Implement framework-specific execution
pass
class MyFrameworkAgent(Agent):
def __init__(self, native_agent):
self.native_agent = native_agent
self.runner = MyFrameworkRunner()
class MyFrameworkModule(Module):
def __init__(self, agents):
super().__init__()
for agent in agents:
wrapped = MyFrameworkAgent(agent)
self.register(wrapped)
Session Management
Sessions maintain state across agent interactions. Framework adapters manage their own session storage within the Session object using namespaced keys:
"crewai"— CrewAI session data"langgraph"— LangGraph session data"openai"— OpenAI Agents SDK session data"adk"— Google ADK session data"pydanticai"— Pydantic AI session data (message history)
Access the session in your runner:
def run(self, agent, prompt, session):
# Get framework-specific data
my_data = session.get("my_framework", {})
# Process and update data
my_data["last_prompt"] = prompt
# Update session
session.set("my_framework", my_data)
Development
Requirements:
- Python 3.12+
- uv 0.8.0+ (recommended) or pip
Setup:
git clone https://github.com/yaalalabs/agent-kernel.git
cd agent-kernel/ak-py
uv sync # or: pip install -e ".[dev]"
Run Tests:
uv run pytest
# or: pytest
Code Quality:
The project uses:
black— Code formattingisort— Import sortingmypy— Type checking
License
Unless otherwise specified, all content, including all source code files and documentation files in this repository are:
Copyright (c) 2025-2026 Yaala Labs.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
SPDX-License-Identifier: Apache-2.0
Support
- Issues: GitHub Issues
- Documentation: Full Documentation
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentkernel-0.9.0.tar.gz.
File metadata
- Download URL: agentkernel-0.9.0.tar.gz
- Upload date:
- Size: 487.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
394c33e46da7eb591effff92d530b9246a5065b02970888bce54c474d3e8cf16
|
|
| MD5 |
1f020becd6533636dd2294aa43c260d2
|
|
| BLAKE2b-256 |
7ed6b4c253110afcee7c5190e5f47aded5bb20c714fb299983dcfdc569383caf
|
Provenance
The following attestation bundles were made for agentkernel-0.9.0.tar.gz:
Publisher:
publish.yaml on yaalalabs/agent-kernel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentkernel-0.9.0.tar.gz -
Subject digest:
394c33e46da7eb591effff92d530b9246a5065b02970888bce54c474d3e8cf16 - Sigstore transparency entry: 2685028707
- Sigstore integration time:
-
Permalink:
yaalalabs/agent-kernel@07f242c18cccf10135f0f19242e63d9b57275b08 -
Branch / Tag:
refs/heads/develop - Owner: https://github.com/yaalalabs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@07f242c18cccf10135f0f19242e63d9b57275b08 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file agentkernel-0.9.0-py3-none-any.whl.
File metadata
- Download URL: agentkernel-0.9.0-py3-none-any.whl
- Upload date:
- Size: 653.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
772863c829e7814be48f1975b0bc8e17e1fb3ad9d3356d8e4d77afe61bd23e54
|
|
| MD5 |
f87d3425d97c377503f5220cccdecae9
|
|
| BLAKE2b-256 |
0d42488e8e932d071ed2f00788c4017db69e83d34a527a71d226491c6e14911a
|
Provenance
The following attestation bundles were made for agentkernel-0.9.0-py3-none-any.whl:
Publisher:
publish.yaml on yaalalabs/agent-kernel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentkernel-0.9.0-py3-none-any.whl -
Subject digest:
772863c829e7814be48f1975b0bc8e17e1fb3ad9d3356d8e4d77afe61bd23e54 - Sigstore transparency entry: 2685028722
- Sigstore integration time:
-
Permalink:
yaalalabs/agent-kernel@07f242c18cccf10135f0f19242e63d9b57275b08 -
Branch / Tag:
refs/heads/develop - Owner: https://github.com/yaalalabs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@07f242c18cccf10135f0f19242e63d9b57275b08 -
Trigger Event:
workflow_dispatch
-
Statement type: