coder-eval 0.8.2__py3-none-any.whl

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.
Files changed (127) hide show
  1. coder_eval/.gitattributes +2 -0
  2. coder_eval/__init__.py +3 -0
  3. coder_eval/agent.py +302 -0
  4. coder_eval/agents/__init__.py +41 -0
  5. coder_eval/agents/_logging.py +89 -0
  6. coder_eval/agents/antigravity_agent.py +811 -0
  7. coder_eval/agents/claude_code_agent.py +1701 -0
  8. coder_eval/agents/codex_agent.py +2055 -0
  9. coder_eval/agents/noop_agent.py +100 -0
  10. coder_eval/agents/registry.py +163 -0
  11. coder_eval/agents/watchdog.py +116 -0
  12. coder_eval/analysis.py +88 -0
  13. coder_eval/cli/__init__.py +87 -0
  14. coder_eval/cli/aggregate_command.py +153 -0
  15. coder_eval/cli/console.py +7 -0
  16. coder_eval/cli/evaluate_command.py +164 -0
  17. coder_eval/cli/plan_command.py +152 -0
  18. coder_eval/cli/report_command.py +121 -0
  19. coder_eval/cli/run_command.py +686 -0
  20. coder_eval/cli/run_helpers.py +137 -0
  21. coder_eval/cli/run_task_internal_command.py +210 -0
  22. coder_eval/cli/utils.py +37 -0
  23. coder_eval/config.py +212 -0
  24. coder_eval/criteria/__init__.py +163 -0
  25. coder_eval/criteria/_classification_aggregate.py +106 -0
  26. coder_eval/criteria/agent_judge.py +425 -0
  27. coder_eval/criteria/base.py +248 -0
  28. coder_eval/criteria/classification_match.py +107 -0
  29. coder_eval/criteria/command_executed.py +181 -0
  30. coder_eval/criteria/commands_efficiency.py +73 -0
  31. coder_eval/criteria/file_check.py +119 -0
  32. coder_eval/criteria/file_contains.py +85 -0
  33. coder_eval/criteria/file_exists.py +45 -0
  34. coder_eval/criteria/file_matches_regex.py +86 -0
  35. coder_eval/criteria/json_check.py +184 -0
  36. coder_eval/criteria/llm_judge.py +260 -0
  37. coder_eval/criteria/reference_comparison.py +130 -0
  38. coder_eval/criteria/run_command.py +220 -0
  39. coder_eval/criteria/skill_triggered.py +111 -0
  40. coder_eval/criteria/uipath_eval.py +223 -0
  41. coder_eval/errors/__init__.py +26 -0
  42. coder_eval/errors/agent.py +26 -0
  43. coder_eval/errors/budget.py +28 -0
  44. coder_eval/errors/categories.py +205 -0
  45. coder_eval/errors/categorization.py +240 -0
  46. coder_eval/errors/executor.py +124 -0
  47. coder_eval/errors/judge.py +12 -0
  48. coder_eval/errors/retry.py +211 -0
  49. coder_eval/errors/timeout.py +63 -0
  50. coder_eval/evaluation/__init__.py +10 -0
  51. coder_eval/evaluation/checker.py +260 -0
  52. coder_eval/evaluation/judge_anthropic.py +55 -0
  53. coder_eval/evaluation/judge_bedrock.py +114 -0
  54. coder_eval/evaluation/judge_context.py +497 -0
  55. coder_eval/evaluation/judge_models.py +53 -0
  56. coder_eval/evaluation/judge_persistence.py +291 -0
  57. coder_eval/evaluation/judge_usage.py +50 -0
  58. coder_eval/evaluation/sub_agent.py +231 -0
  59. coder_eval/evaluation/summaries.py +48 -0
  60. coder_eval/evaluation/verdict_tool.py +213 -0
  61. coder_eval/formatting.py +191 -0
  62. coder_eval/isolation/__init__.py +15 -0
  63. coder_eval/isolation/docker_runner.py +1253 -0
  64. coder_eval/logging_config.py +399 -0
  65. coder_eval/models/__init__.py +337 -0
  66. coder_eval/models/agent_config.py +373 -0
  67. coder_eval/models/container_paths.py +26 -0
  68. coder_eval/models/criteria.py +942 -0
  69. coder_eval/models/enums.py +121 -0
  70. coder_eval/models/experiment.py +314 -0
  71. coder_eval/models/judge.py +90 -0
  72. coder_eval/models/judge_defaults.py +11 -0
  73. coder_eval/models/limits.py +89 -0
  74. coder_eval/models/merge_strategy.py +132 -0
  75. coder_eval/models/mutations.py +95 -0
  76. coder_eval/models/results.py +787 -0
  77. coder_eval/models/routing.py +160 -0
  78. coder_eval/models/sandbox.py +371 -0
  79. coder_eval/models/tasks.py +631 -0
  80. coder_eval/models/telemetry.py +454 -0
  81. coder_eval/models/templates.py +108 -0
  82. coder_eval/orchestration/__init__.py +13 -0
  83. coder_eval/orchestration/batch.py +690 -0
  84. coder_eval/orchestration/config.py +111 -0
  85. coder_eval/orchestration/config_merge.py +431 -0
  86. coder_eval/orchestration/evaluation.py +94 -0
  87. coder_eval/orchestration/experiment.py +837 -0
  88. coder_eval/orchestration/overrides.py +206 -0
  89. coder_eval/orchestration/task_loader.py +437 -0
  90. coder_eval/orchestrator.py +2078 -0
  91. coder_eval/path_utils.py +79 -0
  92. coder_eval/plugins.py +81 -0
  93. coder_eval/pricing.py +169 -0
  94. coder_eval/py.typed +0 -0
  95. coder_eval/reports.py +1066 -0
  96. coder_eval/reports_experiment.py +761 -0
  97. coder_eval/reports_html.py +1659 -0
  98. coder_eval/reports_stats.py +250 -0
  99. coder_eval/resources/__init__.py +137 -0
  100. coder_eval/resources/default_experiment.yaml +85 -0
  101. coder_eval/resources/default_ignore_patterns.yaml +60 -0
  102. coder_eval/resources/tags.yaml +55 -0
  103. coder_eval/sandbox.py +1127 -0
  104. coder_eval/scoring/__init__.py +11 -0
  105. coder_eval/scoring/ast_similarity.py +38 -0
  106. coder_eval/scoring/complexity.py +115 -0
  107. coder_eval/scoring/quality.py +154 -0
  108. coder_eval/scoring/signature_similarity.py +57 -0
  109. coder_eval/scoring/similarity.py +103 -0
  110. coder_eval/scoring/token_similarity.py +44 -0
  111. coder_eval/simulation/__init__.py +27 -0
  112. coder_eval/simulation/termination.py +88 -0
  113. coder_eval/simulation/user_simulator.py +324 -0
  114. coder_eval/streaming/__init__.py +44 -0
  115. coder_eval/streaming/callbacks.py +57 -0
  116. coder_eval/streaming/collector.py +193 -0
  117. coder_eval/streaming/events.py +198 -0
  118. coder_eval/streaming/renderers.py +248 -0
  119. coder_eval/streaming/wire.py +115 -0
  120. coder_eval/telemetry.py +407 -0
  121. coder_eval/utils.py +517 -0
  122. coder_eval-0.8.2.dist-info/METADATA +242 -0
  123. coder_eval-0.8.2.dist-info/RECORD +127 -0
  124. coder_eval-0.8.2.dist-info/WHEEL +4 -0
  125. coder_eval-0.8.2.dist-info/entry_points.txt +5 -0
  126. coder_eval-0.8.2.dist-info/licenses/LICENSE +201 -0
  127. coder_eval-0.8.2.dist-info/licenses/NOTICE +18 -0
@@ -0,0 +1,242 @@
1
+ Metadata-Version: 2.4
2
+ Name: coder-eval
3
+ Version: 0.8.2
4
+ Summary: Evaluate, benchmark, and A/B-test AI coding agents (Claude Code, Codex, Gemini/Antigravity) with sandboxed, reproducible YAML task suites.
5
+ Project-URL: Homepage, https://github.com/UiPath/coder_eval
6
+ Project-URL: Repository, https://github.com/UiPath/coder_eval
7
+ Project-URL: Documentation, https://github.com/UiPath/coder_eval/tree/main/docs
8
+ Project-URL: Issues, https://github.com/UiPath/coder_eval/issues
9
+ Project-URL: Changelog, https://github.com/UiPath/coder_eval/blob/main/CHANGELOG.md
10
+ Author-email: UiPath <coder-eval@uipath.com>
11
+ License-Expression: Apache-2.0
12
+ License-File: LICENSE
13
+ License-File: NOTICE
14
+ Keywords: agent,agent-evaluation,agent-skills,ai,anthropic,antigravity,benchmark,claude,claude-code,claude-skills,code-generation,codex,coding-agent,eval,evals,evaluation,gemini,llm,llm-evaluation,sandbox,skills-evaluation,skillsbench,swe-bench
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Environment :: Console
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Classifier: Topic :: Software Development :: Quality Assurance
23
+ Classifier: Topic :: Software Development :: Testing
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.13
26
+ Requires-Dist: anthropic>=0.86.0
27
+ Requires-Dist: anyio>=4.13.0
28
+ Requires-Dist: azure-monitor-opentelemetry-exporter<1.1.0,>=1.0.0b30
29
+ Requires-Dist: claude-agent-sdk>=0.2.82
30
+ Requires-Dist: jmespath>=1.1.0
31
+ Requires-Dist: jsonschema>=4.26.0
32
+ Requires-Dist: opentelemetry-sdk<2.0.0,>=1.30.0
33
+ Requires-Dist: pydantic-settings>=2.14.2
34
+ Requires-Dist: pydantic>=2.12.5
35
+ Requires-Dist: python-dotenv>=1.2.2
36
+ Requires-Dist: pyyaml>=6.0.3
37
+ Requires-Dist: radon>=6.0.1
38
+ Requires-Dist: rich>=14.3.3
39
+ Requires-Dist: starlette>=1.3.1
40
+ Requires-Dist: tqdm>=4.67.3
41
+ Requires-Dist: typer>=0.24.1
42
+ Provides-Extra: antigravity
43
+ Requires-Dist: google-antigravity==0.1.5; extra == 'antigravity'
44
+ Provides-Extra: codex
45
+ Requires-Dist: openai-codex>=0.1.0b3; extra == 'codex'
46
+ Provides-Extra: dev
47
+ Requires-Dist: bandit[toml]>=1.9.4; extra == 'dev'
48
+ Requires-Dist: mcp>=1.26.0; extra == 'dev'
49
+ Requires-Dist: pip-audit>=2.10.0; extra == 'dev'
50
+ Requires-Dist: pre-commit>=4.5.1; extra == 'dev'
51
+ Requires-Dist: pyright>=1.1.408; extra == 'dev'
52
+ Requires-Dist: pytest-asyncio>=1.3.0; extra == 'dev'
53
+ Requires-Dist: pytest-cov>=7.1.0; extra == 'dev'
54
+ Requires-Dist: pytest-mock>=3.15.1; extra == 'dev'
55
+ Requires-Dist: pytest-xdist[psutil]>=3.0.0; extra == 'dev'
56
+ Requires-Dist: pytest>=9.0.2; extra == 'dev'
57
+ Requires-Dist: ruff>=0.15.7; extra == 'dev'
58
+ Provides-Extra: uipath
59
+ Requires-Dist: uipath>=2.10.31; extra == 'uipath'
60
+ Description-Content-Type: text/markdown
61
+
62
+ # coder_eval — evaluate & benchmark AI coding agents
63
+
64
+ [![PyPI](https://img.shields.io/pypi/v/coder-eval.svg)](https://pypi.org/project/coder-eval/)
65
+ [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
66
+ [![Python 3.13+](https://img.shields.io/badge/python-3.13%2B-blue.svg)](https://www.python.org/downloads/)
67
+ [![CI](https://github.com/UiPath/coder_eval/actions/workflows/pr-checks.yml/badge.svg)](https://github.com/UiPath/coder_eval/actions/workflows/pr-checks.yml)
68
+ [![Code style: Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
69
+
70
+ <p align="center">
71
+ <img src="docs/assets/hero.gif" alt="coder_eval running the hello_date task: a sandboxed agent writes and runs a script from a YAML task, then the scored result is browsed in evalboard" width="100%">
72
+ </p>
73
+
74
+ > **The Coding Agents Gym.** A sandboxed, reproducible framework to evaluate,
75
+ > benchmark, and A/B-test AI coding agents — Claude Code, Codex, and Google
76
+ > Antigravity (Gemini) today, any agent via a plugin SPI — with declarative
77
+ > YAML tasks and weighted scoring.
78
+
79
+ - **Declarative YAML tasks** with pinned dependencies and clear success criteria
80
+ - **Sandboxed execution** in isolated environments with resource limits
81
+ - **Weighted, continuous scoring** (0.0–1.0) with fractional credit and thresholds
82
+ - **Many criterion types** — from file checks to code similarity and LLM-graded rubrics
83
+ - **Agent abstraction** — Claude Code, Codex, and Antigravity (Gemini) today, extensible via a plugin SPI
84
+ - **Experiment layer** — A/B agent configs (models, tools, prompts) side-by-side
85
+ - **Full telemetry** — every tool call, token counts, and cost, with real-time streaming
86
+
87
+ ## What you can do with it
88
+
89
+ - **Benchmark coding agents** — score an agent across a suite of tasks with weighted, pass/fail thresholds
90
+ - **Compare models & configs** — A/B-test Claude vs. Codex vs. Gemini, model vs. model, tool-on vs. tool-off, prompt vs. prompt
91
+ - **Evaluate skills** — verify an agent actually engages a target skill (`skill_triggered`) and score skill-driven suites (SkillsBench-style)
92
+ - **Keep skills up to date in CI** — re-validate your skills on every change or on a schedule; catch silent regressions when models, prompts, or the skills themselves drift
93
+ - **Gate CI on agent quality** — run the suite in GitHub Actions and fail the build on regressions
94
+ - **Bring your own dataset** — fan one task out over many rows for larger benchmark suites
95
+
96
+ > **Keeping skills fresh?** Run coder_eval as a scheduled GitHub Actions job so your
97
+ > skills are continuously re-evaluated against the latest model — a skill that quietly
98
+ > stops triggering surfaces as a failing criterion before your users hit it. See
99
+ > **[Tutorial 02 — Running coder_eval in CI](docs/tutorials/02-ci-pipeline.md)**.
100
+
101
+ ## Quick Start
102
+
103
+ **Prerequisites:** Python 3.13+, [uv](https://docs.astral.sh/uv/) 0.8+, and the
104
+ [Claude CLI](https://docs.anthropic.com/claude/docs/claude-code) (`brew install claude`).
105
+ Developed on macOS; CI runs on Linux.
106
+
107
+ ```bash
108
+ git clone https://github.com/UiPath/coder_eval.git
109
+ cd coder_eval
110
+
111
+ uv sync --extra dev # install core + dev tools
112
+ cp .env.example .env # then set ANTHROPIC_API_KEY
113
+
114
+ uv run coder-eval plan tasks/hello_date.yaml # validate (no tokens spent)
115
+ uv run coder-eval run tasks/hello_date.yaml # run your first evaluation
116
+ uv run coder-eval report runs/latest # view the result
117
+ ```
118
+
119
+ New here? Follow **[Tutorial 01 — Your First Evaluation](docs/tutorials/01-first-evaluation.md)**.
120
+
121
+ The optional `[uipath]` extra (`uv sync --extra dev --extra uipath`) adds the in-host
122
+ `uipath` SDK for local sandbox parity; it installs from public PyPI (no credentials
123
+ required). Without it the framework runs end-to-end; uipath-dependent features fail
124
+ at dispatch with a clear hint.
125
+
126
+ > **Using coder_eval in CI or another project?** Install the published package:
127
+ > `pip install coder-eval` (or `uv add coder-eval`; extras install the same way —
128
+ > `pip install "coder-eval[codex,antigravity]"`). In a real CI gate, pin to a
129
+ > specific released version so a harness upgrade can't silently move your results.
130
+ > See [Tutorial 02 — Running coder_eval in CI](docs/tutorials/02-ci-pipeline.md) for the full setup.
131
+
132
+ ## Telemetry
133
+
134
+ > 📊 **Usage telemetry is on by default.** `coder-eval` sends **anonymous** usage
135
+ > telemetry (command names, outcomes, counts, durations, an anonymous install id,
136
+ > platform info) to help improve the tool. It **never** captures prompts, file
137
+ > contents, or repo paths, and prints a one-time notice on first run. **To disable
138
+ > it, set `TELEMETRY_ENABLED=false`** in your `.env` or environment. See
139
+ > [Usage Telemetry](docs/USER_GUIDE.md#usage-telemetry) for details and how to route
140
+ > it to your own resource.
141
+
142
+ ## Documentation
143
+
144
+ | Guide | What's in it |
145
+ | --- | --- |
146
+ | [Tutorials](docs/tutorials/README.md) | Step-by-step walkthroughs — start here |
147
+ | [User Guide](docs/USER_GUIDE.md) | Full CLI, configuration, output, and environment-variable reference |
148
+ | [Task Definition Guide](docs/TASK_DEFINITION_GUIDE.md) | The task-file schema — all criterion types, scoring, templates |
149
+ | [A/B Experiments](docs/AB_EXPERIMENTS.md) | Compare models / tools / prompts across the same tasks |
150
+ | [Bring Your Own Dataset](docs/BYOD.md) | Fan a single task out over a dataset |
151
+ | [Codex Agent Guide](docs/CODEX_AGENT_GUIDE.md) | Running the Codex agent |
152
+ | [Docker Isolation](docs/DOCKER_ISOLATION.md) | The container sandbox driver |
153
+ | [CLAUDE.md](CLAUDE.md) | Architecture, key patterns, and extension points |
154
+ | [CONTRIBUTING.md](CONTRIBUTING.md) | Dev setup, quality bar, and how to contribute |
155
+
156
+ ## How it compares
157
+
158
+ - **vs. SWE-bench and fixed benchmarks** — SWE-bench is a fixed dataset of GitHub
159
+ issues; coder_eval is a *framework* for authoring your own tasks in declarative
160
+ YAML, so you evaluate the skills and workflows you care about (and can still wrap
161
+ a fixed dataset via [Bring Your Own Dataset](docs/BYOD.md)).
162
+ - **vs. LLM-output eval harnesses (e.g. OpenAI Evals)** — those grade a model's text;
163
+ coder_eval runs a full **agent** in a **sandbox** with real tool use and multi-turn
164
+ dialog, then scores the files and commands it actually produced (continuous
165
+ 0.0–1.0) — not just a judge over a string.
166
+ - **vs. hand-rolled scripts** — reproducible sandboxes, weighted criteria,
167
+ cost/token telemetry, A/B experiments, and CI-ready pass/fail gates out of the box.
168
+
169
+ ## Task Definition
170
+
171
+ A task is a YAML file: a prompt, the agent config, a sandbox, and success criteria.
172
+
173
+ ```yaml
174
+ task_id: "hello_world"
175
+ description: "Create a Python script that prints Hello, World!"
176
+ initial_prompt: "Create hello.py that prints 'Hello, World!'"
177
+
178
+ agent:
179
+ type: "claude-code"
180
+ permission_mode: "acceptEdits"
181
+ allowed_tools: ["Read", "Write", "Bash"]
182
+
183
+ sandbox:
184
+ driver: "tempdir"
185
+ python: {}
186
+
187
+ success_criteria:
188
+ - type: "file_exists"
189
+ path: "hello.py"
190
+ description: "hello.py must be created"
191
+ - type: "run_command"
192
+ command: "python hello.py"
193
+ timeout: 10
194
+ description: "Script must execute successfully"
195
+ ```
196
+
197
+ Tasks can omit the `agent` section entirely — defaults resolve from the experiment
198
+ layer (`experiments/default.yaml`). For the full schema and every criterion type,
199
+ see the [Task Definition Guide](docs/TASK_DEFINITION_GUIDE.md).
200
+
201
+ > **Tip:** In Claude Code, use `/coder-eval-task-create` to scaffold a task from a
202
+ > natural-language description, and `/coder-eval-run-analysis runs/latest` to get
203
+ > improvement suggestions from a completed run.
204
+
205
+ ## Development
206
+
207
+ ```bash
208
+ make install # package + dev + [uipath] deps + pre-commit hooks
209
+ make verify # format + lint + typecheck + test + coverage (CI equivalent)
210
+ ```
211
+
212
+ Run `make verify` before pushing — it mirrors CI (80% coverage threshold). See
213
+ [CONTRIBUTING.md](CONTRIBUTING.md) for the full workflow, commit conventions, and
214
+ extension points (new criteria, new agents).
215
+
216
+ ## Known limits & non-goals
217
+
218
+ - **Not a fixed benchmark or leaderboard** — coder_eval scores *your* tasks and ships
219
+ example tasks, not a canonical scored dataset.
220
+ - **Tasks execute real code** — run untrusted tasks only under the container driver
221
+ (see [Docker Isolation](docs/DOCKER_ISOLATION.md)); the `tempdir` driver is not a
222
+ security boundary.
223
+ - **Bring your own model credentials** — Anthropic, Bedrock, or Gemini keys; coder_eval
224
+ does not proxy or supply model access.
225
+ - **Python 3.13+ only.**
226
+
227
+ ## Support & security
228
+
229
+ - **Security vulnerabilities** — report privately via [SECURITY.md](SECURITY.md); never open a public issue.
230
+ - **Bugs & questions** — open a [GitHub issue](https://github.com/UiPath/coder_eval/issues).
231
+ - **Everything else** — reach the maintainers privately at **coder-eval@uipath.com**.
232
+
233
+ ## License
234
+
235
+ © 2026 UiPath. Licensed under the Apache License, Version 2.0 — see
236
+ [LICENSE](LICENSE) and [NOTICE](NOTICE).
237
+
238
+ ## Acknowledgments
239
+
240
+ Built with the [Claude Agent SDK](https://github.com/anthropics/claude-agent-sdk),
241
+ [Pydantic](https://pydantic.dev/), [Typer](https://typer.tiangolo.com/), and
242
+ [Rich](https://rich.readthedocs.io/).
@@ -0,0 +1,127 @@
1
+ coder_eval/.gitattributes,sha256=483KYswnAndye13Pkg4QTTJ2neszr8zid9KDY8hDNOY,83
2
+ coder_eval/__init__.py,sha256=_mjcQ7hbQPASNiK7wJHHZv2giDgDYI7YKCDaxaMQvmE,87
3
+ coder_eval/agent.py,sha256=fvAEeomzhcZ30kHyv6M9ztfjTZTOc0C7Iep4T0A1viQ,13398
4
+ coder_eval/analysis.py,sha256=GTbpk8LAAdf-BmkaxbLmZ_9hKl0DeY00cMSdO31UWyQ,3387
5
+ coder_eval/config.py,sha256=lUKWwrqii-KPPKHRKKXwNtbtJLKirS4rTrvEMfwdlys,9651
6
+ coder_eval/formatting.py,sha256=uoSPf1wAqa_TbDH3NpaR_qGAs71DJNUFAfS9KLPnQ3g,7307
7
+ coder_eval/logging_config.py,sha256=9dSR7XkLA3er7Al25GIPnSRQkZxk60ysud0deEiuZcw,16010
8
+ coder_eval/orchestrator.py,sha256=ghnRxpXW4AXiOmSIFlWWc4gHzdNp_8aMf9kRsIwZIM8,98499
9
+ coder_eval/path_utils.py,sha256=VM7MkNxdshKVrGGsZz4wJ1keqEn2UsOaXv7IQEPUuB4,2759
10
+ coder_eval/plugins.py,sha256=-5yc-hjsuiLqqqLh8926GdL4gviXu3ccte2VmcXBfGw,3298
11
+ coder_eval/pricing.py,sha256=5ePmIQpj6hBwIzJ_3UdqWFzKzc0_8PqHV2U9GatthKg,7726
12
+ coder_eval/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ coder_eval/reports.py,sha256=G2GKIZeVG5GvYuDuNIk5yDS3kbBC4O1X1TiZJcUPzk8,44244
14
+ coder_eval/reports_experiment.py,sha256=aQJTC87IWDwAutgTvJ5_v-J_CZYiN3BkHG4MLc_KTkM,34127
15
+ coder_eval/reports_html.py,sha256=JkHJQZFXNRrS1w89T7Vi05e5xvY6E3MortfTvnrcOXM,66692
16
+ coder_eval/reports_stats.py,sha256=zsUOmvBDz7ikfmyxDeTVRsC1coGpuk3qlkQxN-plQzs,8802
17
+ coder_eval/sandbox.py,sha256=x4fDLwXCx_LTQU8_oxnd41c_ZCImoinmgTDm_X2IK6c,50789
18
+ coder_eval/telemetry.py,sha256=O8z5QzDYVNj3jyQeW_H3NFc_bVbDaCwpDRMWkOS8Qoc,18337
19
+ coder_eval/utils.py,sha256=Xsm127LIcFnFg8_Swzs6qTDDCMZ3l-QWC2PVrYJQjnA,21984
20
+ coder_eval/agents/__init__.py,sha256=FxHTWGRHkUHhLESwFuZOYCSIfEUW_qLgqRgjjDDztUc,1891
21
+ coder_eval/agents/_logging.py,sha256=xS_K3ZmERFVTM2GyiFCCHiW-JhmfJ320muJI8_s0VxU,3301
22
+ coder_eval/agents/antigravity_agent.py,sha256=FuzNTCmT40VMtKNoHlbr2yGoN1o3ApELNfF88FO1p0o,37660
23
+ coder_eval/agents/claude_code_agent.py,sha256=ab46Y98H7EcN8ERokpvdaxuqBtyEbh59VhBLFJ1Jn90,81538
24
+ coder_eval/agents/codex_agent.py,sha256=-XY9fkQi6GhRuSaFn-vyT4Rt4VQxuLVF03HPNCKWnd0,96681
25
+ coder_eval/agents/noop_agent.py,sha256=qm50M2RahecFqqGbCTbq8cn9lRS4SY1bVCxwsJQol8Q,4017
26
+ coder_eval/agents/registry.py,sha256=7ZQwAPKLYRsczIfbED_EfW1Uf9hB1M_jzi_7OD9lrCw,6795
27
+ coder_eval/agents/watchdog.py,sha256=zV-Wpx5jzl2QDWVhsuGxpuJWUj2tb06fW9FqwClO8KA,4263
28
+ coder_eval/cli/__init__.py,sha256=feLo3y-857VuPUkHSb2534IwHX5TodFEcFSsF7hnjpg,3033
29
+ coder_eval/cli/aggregate_command.py,sha256=0Iur31vXW7ub24iPxq0y4aM-qsE2teHWlb9JUZIHAQE,6346
30
+ coder_eval/cli/console.py,sha256=ox0M-as6UaEQqkQ8C_Pr8dWHGP1isG9Ck4UvTbT951Y,161
31
+ coder_eval/cli/evaluate_command.py,sha256=0V-n8KI3ItgzDpOhQfDGF6AJV5RV096swbFnHo8PxrA,5993
32
+ coder_eval/cli/plan_command.py,sha256=T52uy8on1eNte2kXEr9xADiHkEyeseuu6V736_HiGoo,6779
33
+ coder_eval/cli/report_command.py,sha256=iAm-IJ9uHuz533KJqQNsGH2ekjyp7g6naormC5bM8tg,4390
34
+ coder_eval/cli/run_command.py,sha256=vf1H4H1p77JWd9HNLZcL8P4j4nQpjaikvqRaTwh6_Mw,27630
35
+ coder_eval/cli/run_helpers.py,sha256=ZvXAlVcBNrMwaofQBmOxSPMGOLDp5IfdCoFGSCXZWWY,4778
36
+ coder_eval/cli/run_task_internal_command.py,sha256=1YhHcDGFq7jlvNiy3tW6wk6OtTX2I7jvRJ5xo2kzTtc,9029
37
+ coder_eval/cli/utils.py,sha256=Ia37YWR8Nx7IwTKxfwxvpQ45Glmsll5sJkC_AA8ARvA,1052
38
+ coder_eval/criteria/__init__.py,sha256=xuIJ9VWRqY_aFtJwrteotr3_UBjDD3UfJGkquZNSqRA,6050
39
+ coder_eval/criteria/_classification_aggregate.py,sha256=kP7qbbY25TpDZQ33ubWjVrEuy9uCVhmf8kwoQwieiMw,4160
40
+ coder_eval/criteria/agent_judge.py,sha256=yKlUt6Qk4sB5aQhOF7o4X3J3ZE1a34WJX2XGlHvFBxg,19372
41
+ coder_eval/criteria/base.py,sha256=4i7kJ3Ui4nDUQeLaQxw6a5Ec4kmGKypbTT7Aiu5-x9k,8807
42
+ coder_eval/criteria/classification_match.py,sha256=iVRBpHT3juU81bXpI1WeJoMPefmUAvVAD5qESNbeiBg,3928
43
+ coder_eval/criteria/command_executed.py,sha256=2K8c1D_qqSOKxqOkdCtgrIC9HSBYMRXb9ScnR5yuQic,7528
44
+ coder_eval/criteria/commands_efficiency.py,sha256=m89BSViSxEx0hSKVOe5lA2FKlV_v2-cRLbuCkdt0-tk,2544
45
+ coder_eval/criteria/file_check.py,sha256=Lci0-ZMGn309D8VQ_PZ-JjYAxnrKK_zZiLOjzv9mtZw,4310
46
+ coder_eval/criteria/file_contains.py,sha256=UA0MnG5pSSCZSRZ2wiIwFzE8J40iI4U_8hETMzTNIdc,3090
47
+ coder_eval/criteria/file_exists.py,sha256=RdYcSrt3LxZndkAU4R0twdLaQeLAELhBXxrIRwhop0o,1329
48
+ coder_eval/criteria/file_matches_regex.py,sha256=L8pqFRa8m2McELFlsUhjO8P57aEa9oEnZHO9eC1jEjs,2977
49
+ coder_eval/criteria/json_check.py,sha256=YzK-aEu8PNf4ThzkesHXFL6Em0v3Nl0BCsKnDxGZ2OM,7044
50
+ coder_eval/criteria/llm_judge.py,sha256=5PuzJgMPZ-lDoTXZHa9hxqzicXeBAsqwUMV5WbCZxFI,10621
51
+ coder_eval/criteria/reference_comparison.py,sha256=3ZK42M8tvQnjRqM7PrLXpNr69AY7sd1bQBYlyRXXg6Y,4929
52
+ coder_eval/criteria/run_command.py,sha256=dn4XDrmHtLC0nwFPR6qi5RPNuki9MTRRdrfnxCSfrS8,7779
53
+ coder_eval/criteria/skill_triggered.py,sha256=0-bCqxCmLo7-dsOamiPZUx2Giq5JTL00TOu_AYEqFHA,4300
54
+ coder_eval/criteria/uipath_eval.py,sha256=TYcyc9rveSzOmPjT2Ir4SDKcq6uXYWlslT6YK5kc_Ts,8949
55
+ coder_eval/errors/__init__.py,sha256=iMmzstLoldE448D7DQCnIzIlLJHe3Pp1Jc1Yu_F-SN4,844
56
+ coder_eval/errors/agent.py,sha256=aCxvdQGmOHfF61Z20htyiAWH_Qy0Nk5Mem2i65eMl3k,1007
57
+ coder_eval/errors/budget.py,sha256=t9CsYhZlkpelDjwOro6ewuqYtSG_aBHtHTXsbhmzUks,875
58
+ coder_eval/errors/categories.py,sha256=1L-vAmhXfNcvVHsxAm4uVtEzoL0lMmzuAjdZvf04AFA,9177
59
+ coder_eval/errors/categorization.py,sha256=iytWrWQRN87A16PvbSnXsy-rBZWIed_CsfEcvwLf2-8,10222
60
+ coder_eval/errors/executor.py,sha256=db2ehvbAx7k7HBmAPM_GJIsfKftMgCLeJEIcirmbqr0,4640
61
+ coder_eval/errors/judge.py,sha256=sBziaZ2uOhhFEnv-2W3bLDnKS5KHIy89LgP71MpXQoY,530
62
+ coder_eval/errors/retry.py,sha256=uQPD62gntNP5vrpAYNJf9zH8fI8lWESM-tzge1zcSbc,6630
63
+ coder_eval/errors/timeout.py,sha256=xkfrtdbN89o3_AE4NQ3UigDe3y7TqCiAdHum_PkPFbI,1849
64
+ coder_eval/evaluation/__init__.py,sha256=l_J_a6j95Q91PqDBX-HeAEJdFJOqIcXfs9XpW6hll4E,426
65
+ coder_eval/evaluation/checker.py,sha256=Lb1iQ_cQIpLLGWVE113B4-QPUmUfpbDXX2JPWwj2BYQ,10854
66
+ coder_eval/evaluation/judge_anthropic.py,sha256=GnG8JWBfQX4JhcJO_2TejN_wjG1L7iIACYNoO6T7bsc,2037
67
+ coder_eval/evaluation/judge_bedrock.py,sha256=CU23SEQjPzy-6vJMJAN8VMzGcMKfPliIJrMM-UsuLbI,4613
68
+ coder_eval/evaluation/judge_context.py,sha256=5Cllw77d3HxtKzkh9_1kZ06UoQ2yb0LwWewEeRrT2yA,22489
69
+ coder_eval/evaluation/judge_models.py,sha256=RenQycjnPj8szsc0fYJnRP7gIR6sM7NZiHamZCWhBJE,1730
70
+ coder_eval/evaluation/judge_persistence.py,sha256=CWkOzolwMlvY5J-ppRaiH_PmNhNu9Wdvs1eDZVKmlvw,13696
71
+ coder_eval/evaluation/judge_usage.py,sha256=x1wcSDhdrL_CiDB5bvNXhijWWp5lszgYHaU8xOxTz0A,1957
72
+ coder_eval/evaluation/sub_agent.py,sha256=fxwQxMFwgSe7cuVk9njUg616We8rpHbaNugRd2fpFpw,10532
73
+ coder_eval/evaluation/summaries.py,sha256=JV-I2uSKFi0041lVQxaqDlr8nPd6aOtuZb_j-4Wtfz4,1597
74
+ coder_eval/evaluation/verdict_tool.py,sha256=Zk16iVfoYswGG0LtqSOE4YOcQ2HMxir6Q08kVs2-qa0,9055
75
+ coder_eval/isolation/__init__.py,sha256=BP5fw11tOjmdg2CVzhOx95Q2mMyVPGx2fyBR_xRZFHA,502
76
+ coder_eval/isolation/docker_runner.py,sha256=wm9OB9sKPTe4SGcXffw5a3cIcQoiEwQSN3P4meRq0po,62830
77
+ coder_eval/models/__init__.py,sha256=qYoyf8RUBuHfLNlop1NHwC4TlWMiSHbL4zVD-ISZ3ME,7646
78
+ coder_eval/models/agent_config.py,sha256=pxyEaVj5P9t4JX4Vzo-pmldcLWh6Ge8ug23dGqZgulc,16254
79
+ coder_eval/models/container_paths.py,sha256=B8jC_TgIC7hX8aRkAaI3Og3jjCCUUvHJCAjl3lZBdWw,1134
80
+ coder_eval/models/criteria.py,sha256=6EzRCGfe_gYWYW-mQ04EefUSMikcHUtCFcYZa1CBQFw,42630
81
+ coder_eval/models/enums.py,sha256=UTtTDrxH5hcXPWCRviWyzBI9wegjvYhhIJMS2iJQk_c,4530
82
+ coder_eval/models/experiment.py,sha256=6CNsuXA3-HXPbbaeEfWOcWfbKfJcZeX3nGFRBpotedY,12798
83
+ coder_eval/models/judge.py,sha256=zA1VT9jD3lbKBGiZdOJ-3BlphsZ-EIbcH-NnydakZW4,4033
84
+ coder_eval/models/judge_defaults.py,sha256=DkeD0bYY7SGdApWCEYrHAzpmRx1uhJwWk5EJXAT4umE,467
85
+ coder_eval/models/limits.py,sha256=z0e5scnDNcZFh8ts-2fc8Nrt2Ij2Rdd4eb2sXb99mms,3274
86
+ coder_eval/models/merge_strategy.py,sha256=eaklU8SVrmYbb5MpF_S8qZR3QKGKuUYAJAOENKf5Nus,6405
87
+ coder_eval/models/mutations.py,sha256=KjYExhCSztRfre9FbGHFlwaLC63eBP2E8hjRFRscUuA,3021
88
+ coder_eval/models/results.py,sha256=eR9JycalmSv8PbhmzAXDiATELXXcKASvxnnqdXFKggk,35682
89
+ coder_eval/models/routing.py,sha256=A8KKVh3APWx396wofike4EGtmBya3lT3d-4bdryAOAs,6876
90
+ coder_eval/models/sandbox.py,sha256=2AMoltM_CeCNiV0NjVFDYkRn9AYI7iWTcBpH-XM4eLU,16251
91
+ coder_eval/models/tasks.py,sha256=riAh3fGTfql4Yd8qJ0hOUW1r0eG8IdEe3bO-oULTLes,28871
92
+ coder_eval/models/telemetry.py,sha256=eVtAtxZI5sVxZSXsW_8w8fWlwo38AGccLNcvbNWYJpk,21679
93
+ coder_eval/models/templates.py,sha256=GIBljNJKn35LZaWhUT367JR94xnfXm358nVmCg4G-EU,4304
94
+ coder_eval/orchestration/__init__.py,sha256=mQGTtzXDSSu1lHgWkcDTunDYCLZHBMClgEKcd42QONM,526
95
+ coder_eval/orchestration/batch.py,sha256=KMIptHe8M7qusTtOmg4SLGwykMBYt_beLE3AOlkFIF8,30669
96
+ coder_eval/orchestration/config.py,sha256=xFRBL-vsx-_dBHOp1BsOZilrbNrjUnrWYnUsEeAn-xI,5153
97
+ coder_eval/orchestration/config_merge.py,sha256=3g_RVmFyA_3m3r8XtuDytQxDdftajLj1JdnmmqG_rn0,18587
98
+ coder_eval/orchestration/evaluation.py,sha256=djOoLyypKifPZYfiMgtLDsXOqtLoibjct7QkMmerB6c,3889
99
+ coder_eval/orchestration/experiment.py,sha256=CUyNlz6Ds9BtvO_Iua5lUmpO2a6V0IInld3raTHCWOs,38034
100
+ coder_eval/orchestration/overrides.py,sha256=hGHmInBSaCFkLxggbpHyqvLK-SzU0h0fWkDljG3HIQs,9018
101
+ coder_eval/orchestration/task_loader.py,sha256=lpgy58wonZffC6U4QNqwyc-5nCDthQeQYVd2Ahq2xQs,18288
102
+ coder_eval/resources/__init__.py,sha256=3JDx-7EgjGkbh63ChK3-LbJJaGVxxC4DJ_rpg2fZ-_0,4324
103
+ coder_eval/resources/default_ignore_patterns.yaml,sha256=h0ubiTAfTEO6xh0ZEp_2eMUES3Bv3yOQSWLjX1-rLDg,927
104
+ coder_eval/resources/tags.yaml,sha256=JcexCk9KqlslWIELu1utoVunWHIqKQz9fB-Deu9sRm4,2636
105
+ coder_eval/scoring/__init__.py,sha256=KGCcsEM-DQgdBnpwrG7hEireNRDp1AMb1Px1AG1ekLY,456
106
+ coder_eval/scoring/ast_similarity.py,sha256=Sn2kBPyw1fzu6GRVulWJFIbAESFhLtB43fI4W4RqGPE,1042
107
+ coder_eval/scoring/complexity.py,sha256=nbDeqV0fvT2EyEctYs3hmL1LQGnVTZV3iJ7hzkw4FNY,4121
108
+ coder_eval/scoring/quality.py,sha256=ztMxCy455myXYPaATja5JFhfyHy8HJRp1uJCzOHKojA,4887
109
+ coder_eval/scoring/signature_similarity.py,sha256=p731UlH3GELc6vVcSeVsMfn7nB9Ty9GeNjNEC81LauE,1674
110
+ coder_eval/scoring/similarity.py,sha256=eRpMiqICHkPZ7lVpgBsGzLh7rL8A-EWE1hIhJVpNlLk,3838
111
+ coder_eval/scoring/token_similarity.py,sha256=BEVl1weghLWFJVSP6rRL0YWS61-Og69jgtZgjAJ_KiY,1258
112
+ coder_eval/simulation/__init__.py,sha256=aykNLgveA0f8y6GC9SwgGtlE-b1LRnahsrOlz276t0Q,1059
113
+ coder_eval/simulation/termination.py,sha256=lQH9ZAfRCJUOW2W2aT74BI3CSou7pDeTArhHs0DtN2k,3107
114
+ coder_eval/simulation/user_simulator.py,sha256=PT96nSYLcU-x9pZ5qWh5ub17wmtSgKXJfR5g8qo3oWY,14174
115
+ coder_eval/streaming/__init__.py,sha256=HYYaha2wVa8flIdOCuy07ASL73vMyjRLJVAjkoHrcbc,1090
116
+ coder_eval/streaming/callbacks.py,sha256=5xS0vrNVxV-36C4YVW9Ro9LfuSZTi6izVkUW6Iy5dvw,1667
117
+ coder_eval/streaming/collector.py,sha256=bsb1eTMRidf6XI739NtE1QuM0Q6pVfO2aXBf8kp--Pk,8734
118
+ coder_eval/streaming/events.py,sha256=r2gasWNyKrYFzxtZhv5oPEfGSTO6Dy-lsXxxjNUxnzc,6562
119
+ coder_eval/streaming/renderers.py,sha256=YuGqqbsrDq0jhEYw2ZckapXYw3MU_arWykUwvU3qDxA,9936
120
+ coder_eval/streaming/wire.py,sha256=_bfi6yVGTYemgYHWK2p2FKfhIVc_AVk6E4yn69iNViw,4332
121
+ coder_eval/resources/default_experiment.yaml,sha256=GhGgDm26Yy_L_i331hlywc2BXA4jlYdfdn0Q5nfNqu8,3843
122
+ coder_eval-0.8.2.dist-info/METADATA,sha256=uvxtanhP7aZ1VDJpLBn9iuEyF_x54k4E8KL3Q8FfoN4,12057
123
+ coder_eval-0.8.2.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
124
+ coder_eval-0.8.2.dist-info/entry_points.txt,sha256=0YJpExp3PtnlautoLo_OM4qCB_9JzJEMJ8JtWSTQx8c,121
125
+ coder_eval-0.8.2.dist-info/licenses/LICENSE,sha256=-fzfp4A1ib5mxAeTJmBTabXCvz0NoP2Hs7m6EzFi-r0,11336
126
+ coder_eval-0.8.2.dist-info/licenses/NOTICE,sha256=fZ1DRukeC5PHYqeWF_9epr614nmK12RHVp6CyXrriHI,907
127
+ coder_eval-0.8.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ coder-eval = coder_eval.cli:app
3
+
4
+ [coder_eval.plugins]
5
+ coder_eval = coder_eval.agents:register_builtins
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 UiPath
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,18 @@
1
+ © 2026 UiPath
2
+
3
+ Use of this product is subject to the Apache License, Version 2.0 (the
4
+ "License"); you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+ https://www.apache.org/licenses/LICENSE-2.0.
7
+
8
+ Unless required by applicable law or agreed to in writing, software distributed
9
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
11
+ specific language governing permissions and limitations under the License.
12
+
13
+ For any questions, contact us at contractnotice@uipath.com
14
+
15
+ UiPath refers to UiPath SRL with headquarters at 4 Vasile Alecsandri Str. and
16
+ 11 Constantin Daniel Str., Building A, floors 5 and 6, District 1, Bucharest
17
+ 010639, Romania and UiPath Inc. with principal place of business: One
18
+ Vanderbilt Ave., 60th floor, New York, NY, 10017, United States.