forked from eval-protocol/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (25 loc) · 729 Bytes
/
Copy path__init__.py
File metadata and controls
29 lines (25 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Eval Protocol Agent Evaluation Framework V2 Components.
This package contains the core components for the new, resource-centric
agent evaluation framework, including the ForkableResource ABC, Orchestrator,
and concrete resource implementations.
"""
from .orchestrator import Orchestrator
# Make key components easily importable from eval_protocol.agent
from .resource_abc import ForkableResource
from .resources import (
DockerResource,
FileSystemResource,
PythonStateResource,
SQLResource,
)
from .tool_registry import ToolRegistry
__all__ = [
"ForkableResource",
"Orchestrator",
"PythonStateResource",
"SQLResource",
"FileSystemResource",
"DockerResource",
"ToolRegistry",
]