codefix-env 0.2.2__tar.gz → 0.2.3__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.
- {codefix_env-0.2.2/src/codefix_env.egg-info → codefix_env-0.2.3}/PKG-INFO +7 -3
- {codefix_env-0.2.2 → codefix_env-0.2.3}/README.md +6 -2
- {codefix_env-0.2.2 → codefix_env-0.2.3}/pyproject.toml +1 -1
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/__init__.py +1 -1
- {codefix_env-0.2.2 → codefix_env-0.2.3/src/codefix_env.egg-info}/PKG-INFO +7 -3
- {codefix_env-0.2.2 → codefix_env-0.2.3}/LICENSE +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/MANIFEST.in +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/SECURITY.md +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/setup.cfg +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/cli.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/client.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/env.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/models.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/rewards.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/tasks/__init__.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/tasks/easy.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/tasks/hard.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/tasks/medium.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/utils/__init__.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/utils/metrics.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/utils/reward_model.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env/utils/sandbox.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env.egg-info/SOURCES.txt +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env.egg-info/dependency_links.txt +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env.egg-info/entry_points.txt +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env.egg-info/requires.txt +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/src/codefix_env.egg-info/top_level.txt +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/tests/test_env.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/tests/test_rewards.py +0 -0
- {codefix_env-0.2.2 → codefix_env-0.2.3}/tests/test_tasks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codefix-env
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A high-performance PyTorch-based RL environment for automated code debugging and LLM agent evaluation
|
|
5
5
|
Author-email: Shailendra Dhakad <dhakarshailendra829@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -267,7 +267,11 @@ Dynamic: license-file
|
|
|
267
267
|
|
|
268
268
|
<div align="center">
|
|
269
269
|
|
|
270
|
-
<
|
|
270
|
+
<p align="center">
|
|
271
|
+
<img src="docs/logo/codefix_logo.png" alt="CodeFix-Env" width="360" />
|
|
272
|
+
</p>
|
|
273
|
+
|
|
274
|
+
<h1>CodeFix-Env v0.2.3: Code Debugging Environment</h1>
|
|
271
275
|
|
|
272
276
|
<p>A sandboxed reinforcement learning environment for training and evaluating LLM agents on automated code debugging, and the fast, verifiable feedback loop that kind of training requires.</p>
|
|
273
277
|
|
|
@@ -333,7 +337,7 @@ We do that by:
|
|
|
333
337
|
|
|
334
338
|
Our goal is to grow this into a task set and training result large enough to serve as a genuine benchmark and training ground for code-repair agents, in the same way SWE-bench did for repository-scale evaluation.
|
|
335
339
|
|
|
336
|
-
<sup>1</sup> https://
|
|
340
|
+
<sup>1</sup> https://arXiv:2607.XXXXX, 2026
|
|
337
341
|
|
|
338
342
|
---
|
|
339
343
|
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="docs/logo/codefix_logo.png" alt="CodeFix-Env" width="360" />
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<h1>CodeFix-Env v0.2.3: Code Debugging Environment</h1>
|
|
4
8
|
|
|
5
9
|
<p>A sandboxed reinforcement learning environment for training and evaluating LLM agents on automated code debugging, and the fast, verifiable feedback loop that kind of training requires.</p>
|
|
6
10
|
|
|
@@ -66,7 +70,7 @@ We do that by:
|
|
|
66
70
|
|
|
67
71
|
Our goal is to grow this into a task set and training result large enough to serve as a genuine benchmark and training ground for code-repair agents, in the same way SWE-bench did for repository-scale evaluation.
|
|
68
72
|
|
|
69
|
-
<sup>1</sup> https://
|
|
73
|
+
<sup>1</sup> https://arXiv:2607.XXXXX, 2026
|
|
70
74
|
|
|
71
75
|
---
|
|
72
76
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codefix-env"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.3"
|
|
8
8
|
description = "A high-performance PyTorch-based RL environment for automated code debugging and LLM agent evaluation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codefix-env
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A high-performance PyTorch-based RL environment for automated code debugging and LLM agent evaluation
|
|
5
5
|
Author-email: Shailendra Dhakad <dhakarshailendra829@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -267,7 +267,11 @@ Dynamic: license-file
|
|
|
267
267
|
|
|
268
268
|
<div align="center">
|
|
269
269
|
|
|
270
|
-
<
|
|
270
|
+
<p align="center">
|
|
271
|
+
<img src="docs/logo/codefix_logo.png" alt="CodeFix-Env" width="360" />
|
|
272
|
+
</p>
|
|
273
|
+
|
|
274
|
+
<h1>CodeFix-Env v0.2.3: Code Debugging Environment</h1>
|
|
271
275
|
|
|
272
276
|
<p>A sandboxed reinforcement learning environment for training and evaluating LLM agents on automated code debugging, and the fast, verifiable feedback loop that kind of training requires.</p>
|
|
273
277
|
|
|
@@ -333,7 +337,7 @@ We do that by:
|
|
|
333
337
|
|
|
334
338
|
Our goal is to grow this into a task set and training result large enough to serve as a genuine benchmark and training ground for code-repair agents, in the same way SWE-bench did for repository-scale evaluation.
|
|
335
339
|
|
|
336
|
-
<sup>1</sup> https://
|
|
340
|
+
<sup>1</sup> https://arXiv:2607.XXXXX, 2026
|
|
337
341
|
|
|
338
342
|
---
|
|
339
343
|
|
|
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
|
|
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
|
|
File without changes
|