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.
@@ -208,3 +208,4 @@ cython_debug/
208
208
  marimo/_static/
209
209
  marimo/_lsp/
210
210
  __marimo__/
211
+ /worktrees
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ecp-runtime
3
- Version: 0.3.1
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.1"
28
+ pip install "ecp-runtime==0.3.2"
29
29
  ```
30
30
 
31
31
  ## Usage
@@ -7,7 +7,7 @@ ECP is a vendor-neutral protocol for testing agent outputs, tool calls, and eval
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- pip install "ecp-runtime==0.3.1"
10
+ pip install "ecp-runtime==0.3.2"
11
11
  ```
12
12
 
13
13
  ## Usage
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ecp-runtime"
7
- version = "0.3.1"
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" },
@@ -0,0 +1,2 @@
1
+ __version__ = "0.3.2"
2
+
@@ -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",
@@ -1,2 +0,0 @@
1
- __version__ = "0.3.1"
2
-