-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (40 loc) · 1.03 KB
/
__init__.py
File metadata and controls
43 lines (40 loc) · 1.03 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""SWE-bench benchmark.
The agent loop runs against the eliza TypeScript benchmark HTTP server via
``eliza_adapter.swe_bench`` (TEXT_LARGE handler) plus a thin Python harness that
loads instances, applies patches, and scores diffs.
"""
from .dataset import DatasetStatistics, SWEBenchDataset
from .evaluator import PatchQualityResult, SimplePatchEvaluator, SWEBenchEvaluator
from .repo_manager import RepositoryManager
from .types import (
LEADERBOARD_SCORES,
AgentStep,
AgentTrajectory,
CodeLocation,
PatchStatus,
RepoStats,
SWEBenchConfig,
SWEBenchInstance,
SWEBenchReport,
SWEBenchResult,
SWEBenchVariant,
)
__all__ = [
"SWEBenchVariant",
"PatchStatus",
"SWEBenchInstance",
"SWEBenchResult",
"SWEBenchReport",
"SWEBenchConfig",
"CodeLocation",
"AgentStep",
"AgentTrajectory",
"RepoStats",
"LEADERBOARD_SCORES",
"SWEBenchDataset",
"DatasetStatistics",
"PatchQualityResult",
"SimplePatchEvaluator",
"SWEBenchEvaluator",
"RepositoryManager",
]