Spaces:
Sleeping
Sleeping
databoysu commited on
Commit ·
fbefaec
1
Parent(s): c96171f
compliance check
Browse files- .dockerignore +1 -0
- .gitignore +3 -2
- .hfignore +1 -0
- server/app.py +1 -1
.dockerignore
CHANGED
|
@@ -10,6 +10,7 @@ __pycache__/
|
|
| 10 |
.venv/
|
| 11 |
.pytest_cache/
|
| 12 |
.mypy_cache/
|
|
|
|
| 13 |
*.egg-info/
|
| 14 |
|
| 15 |
# Node / tooling
|
|
|
|
| 10 |
.venv/
|
| 11 |
.pytest_cache/
|
| 12 |
.mypy_cache/
|
| 13 |
+
CLAUDE.md
|
| 14 |
*.egg-info/
|
| 15 |
|
| 16 |
# Node / tooling
|
.gitignore
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
.agents/
|
| 3 |
.env
|
| 4 |
uv.lock
|
| 5 |
-
|
| 6 |
__pycache__/
|
| 7 |
_pycache_/
|
| 8 |
node_modules/
|
|
@@ -14,4 +14,5 @@ package-lock.json
|
|
| 14 |
**/.venv/
|
| 15 |
**/node_modules/
|
| 16 |
openenv_tracefix_rl.egg-info/
|
| 17 |
-
test_redirect.py
|
|
|
|
|
|
| 2 |
.agents/
|
| 3 |
.env
|
| 4 |
uv.lock
|
| 5 |
+
CLAUDE.md
|
| 6 |
__pycache__/
|
| 7 |
_pycache_/
|
| 8 |
node_modules/
|
|
|
|
| 14 |
**/.venv/
|
| 15 |
**/node_modules/
|
| 16 |
openenv_tracefix_rl.egg-info/
|
| 17 |
+
test_redirect.py
|
| 18 |
+
RULES.md
|
.hfignore
CHANGED
|
@@ -13,6 +13,7 @@ node_modules/
|
|
| 13 |
# Local secrets/config
|
| 14 |
.env
|
| 15 |
.env.*
|
|
|
|
| 16 |
|
| 17 |
# VCS and editor noise
|
| 18 |
.git/
|
|
|
|
| 13 |
# Local secrets/config
|
| 14 |
.env
|
| 15 |
.env.*
|
| 16 |
+
CLAUDE.md
|
| 17 |
|
| 18 |
# VCS and editor noise
|
| 19 |
.git/
|
server/app.py
CHANGED
|
@@ -27,7 +27,7 @@ app = create_app(
|
|
| 27 |
CodeAction,
|
| 28 |
CodeObservation,
|
| 29 |
env_name="tracefix_rl",
|
| 30 |
-
max_concurrent_envs=
|
| 31 |
)
|
| 32 |
|
| 33 |
from fastapi.responses import RedirectResponse
|
|
|
|
| 27 |
CodeAction,
|
| 28 |
CodeObservation,
|
| 29 |
env_name="tracefix_rl",
|
| 30 |
+
max_concurrent_envs=100,
|
| 31 |
)
|
| 32 |
|
| 33 |
from fastapi.responses import RedirectResponse
|