ecp-runtime 0.3.1__tar.gz → 0.3.2__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.
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/.gitignore +1 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/PKG-INFO +2 -2
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/README.md +1 -1
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/pyproject.toml +1 -1
- ecp_runtime-0.3.2/src/ecp_runtime/__init__.py +2 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/cli.py +2 -10
- ecp_runtime-0.3.1/src/ecp_runtime/__init__.py +0 -2
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/graders.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/manifest.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/reporter.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/runner.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/src/ecp_runtime/trend.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/__init__.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_cli.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_example_integrations.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_graders.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_manifest.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_runner.py +0 -0
- {ecp_runtime-0.3.1 → ecp_runtime-0.3.2}/tests/test_trend.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ecp-runtime
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Vendor-neutral runtime for portable AI agent evaluations with outputs, tool calls, and audit context.
|
|
5
5
|
Project-URL: Homepage, https://github.com/evaluation-context-protocol/ecp
|
|
6
6
|
Project-URL: Documentation, https://evaluationcontextprotocol.io/
|
|
@@ -25,7 +25,7 @@ ECP is a vendor-neutral protocol for testing agent outputs, tool calls, and eval
|
|
|
25
25
|
## Install
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
pip install "ecp-runtime==0.3.
|
|
28
|
+
pip install "ecp-runtime==0.3.2"
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## Usage
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ecp-runtime"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Vendor-neutral runtime for portable AI agent evaluations with outputs, tool calls, and audit context."
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "ECP Maintainers", email = "aniket.wattamwar17@gmail.com" },
|
|
@@ -10,19 +10,11 @@ from typing import Any, Dict, List, Optional
|
|
|
10
10
|
import typer
|
|
11
11
|
from pydantic import ValidationError
|
|
12
12
|
|
|
13
|
+
from .manifest import ECPManifest
|
|
13
14
|
from .reporter import HTMLReporter
|
|
15
|
+
from .runner import ECPRunner
|
|
14
16
|
from .trend import RunTrendAnalyzer
|
|
15
17
|
|
|
16
|
-
# Import local modules (Using relative imports)
|
|
17
|
-
try:
|
|
18
|
-
from .manifest import ECPManifest
|
|
19
|
-
from .runner import ECPRunner
|
|
20
|
-
except ImportError:
|
|
21
|
-
# Fallback for direct execution debugging
|
|
22
|
-
sys.path.append(os.path.dirname(__file__))
|
|
23
|
-
from manifest import ECPManifest
|
|
24
|
-
from runner import ECPRunner
|
|
25
|
-
|
|
26
18
|
app = typer.Typer(
|
|
27
19
|
name="ecp",
|
|
28
20
|
help="Evaluation Context Protocol Runtime CLI",
|
|
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
|