agentkernel 0.1.2b2__tar.gz → 0.1.2b4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/PKG-INFO +7 -3
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/README.md +6 -2
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/pyproject.toml +1 -1
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/a2a/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/a2a/a2a.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/adk/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/adk/adk.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/api/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/api/a2a.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/api/agent.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/api/restapi.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/aws/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/aws/aklambda.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/cli/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/cli/cli.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/base.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/config.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/module.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/runtime.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/service.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/sessions/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/sessions/base.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/sessions/in_memory.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/core/sessions/redis.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/crewai/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/crewai/crewai.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/langgraph/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/langgraph/langgraph.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/mcp/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/mcp/akmcp.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/openai/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/openai/openai.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/test/__init__.py +0 -0
- {agentkernel-0.1.2b2 → agentkernel-0.1.2b4}/src/agentkernel/test/test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: agentkernel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2b4
|
|
4
4
|
Summary: Agent Kernel Python Distribution
|
|
5
5
|
Author: Yaala Labs
|
|
6
6
|
Author-email: Yaala Labs <info@yaalalabs.com>
|
|
@@ -53,8 +53,12 @@ Agent Kernel is a lightweight runtime and adapter layer for building and running
|
|
|
53
53
|
- **Unified API**: Common abstractions (Agent, Runner, Session, Module, Runtime) across frameworks
|
|
54
54
|
- **Multi-Framework Support**: OpenAI Agents SDK, CrewAI, LangGraph, Google ADK
|
|
55
55
|
- **Session Management**: Built-in session abstraction for conversational state
|
|
56
|
-
- **Flexible Deployment**: Interactive CLI for local development, AWS Lambda handler for serverless deployment
|
|
56
|
+
- **Flexible Deployment**: Interactive CLI for local development and testing, AWS Lambda handler for serverless deployment, AWS ECS Fargate deployment
|
|
57
57
|
- **Pluggable Architecture**: Easy to extend with custom framework adapters
|
|
58
|
+
- **MCP Server**: Built-in Model Context Protocol server for exposing agents as MCP tools and exposing any custom tool
|
|
59
|
+
- **A2A Server**: Built-in Agent-to-Agent communication server for exposing agents with a simple configuration change
|
|
60
|
+
- **REST API**: Built-in REST API server for agent interaction
|
|
61
|
+
- **Test Automation**: Built-in test suite for testing agents
|
|
58
62
|
|
|
59
63
|
## Installation
|
|
60
64
|
|
|
@@ -536,7 +540,7 @@ def run(self, agent, prompt, session):
|
|
|
536
540
|
**Setup:**
|
|
537
541
|
|
|
538
542
|
```bash
|
|
539
|
-
git clone https://github.com/
|
|
543
|
+
git clone https://github.com/yaalalabs/agent-kernel.git
|
|
540
544
|
cd agent-kernel/ak-py
|
|
541
545
|
uv sync # or: pip install -e ".[dev]"
|
|
542
546
|
```
|
|
@@ -10,8 +10,12 @@ Agent Kernel is a lightweight runtime and adapter layer for building and running
|
|
|
10
10
|
- **Unified API**: Common abstractions (Agent, Runner, Session, Module, Runtime) across frameworks
|
|
11
11
|
- **Multi-Framework Support**: OpenAI Agents SDK, CrewAI, LangGraph, Google ADK
|
|
12
12
|
- **Session Management**: Built-in session abstraction for conversational state
|
|
13
|
-
- **Flexible Deployment**: Interactive CLI for local development, AWS Lambda handler for serverless deployment
|
|
13
|
+
- **Flexible Deployment**: Interactive CLI for local development and testing, AWS Lambda handler for serverless deployment, AWS ECS Fargate deployment
|
|
14
14
|
- **Pluggable Architecture**: Easy to extend with custom framework adapters
|
|
15
|
+
- **MCP Server**: Built-in Model Context Protocol server for exposing agents as MCP tools and exposing any custom tool
|
|
16
|
+
- **A2A Server**: Built-in Agent-to-Agent communication server for exposing agents with a simple configuration change
|
|
17
|
+
- **REST API**: Built-in REST API server for agent interaction
|
|
18
|
+
- **Test Automation**: Built-in test suite for testing agents
|
|
15
19
|
|
|
16
20
|
## Installation
|
|
17
21
|
|
|
@@ -493,7 +497,7 @@ def run(self, agent, prompt, session):
|
|
|
493
497
|
**Setup:**
|
|
494
498
|
|
|
495
499
|
```bash
|
|
496
|
-
git clone https://github.com/
|
|
500
|
+
git clone https://github.com/yaalalabs/agent-kernel.git
|
|
497
501
|
cd agent-kernel/ak-py
|
|
498
502
|
uv sync # or: pip install -e ".[dev]"
|
|
499
503
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|