Somuai12 commited on
Commit
b978fbd
·
1 Parent(s): 75c1656

Fix validator pipeline: python 3.12, grader POST, websockets

Browse files
Files changed (3) hide show
  1. Dockerfile +1 -1
  2. openenv.yaml +1 -1
  3. server/requirements.txt +1 -0
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.11-slim-bookworm
2
 
3
  WORKDIR /app
4
 
 
1
+ FROM python:3.12-slim-bookworm
2
 
3
  WORKDIR /app
4
 
openenv.yaml CHANGED
@@ -79,7 +79,7 @@ endpoints:
79
  - path: "/tasks"
80
  method: "GET"
81
  - path: "/grader"
82
- method: "GET"
83
  - path: "/baseline"
84
  method: "GET"
85
  optional:
 
79
  - path: "/tasks"
80
  method: "GET"
81
  - path: "/grader"
82
+ method: "POST"
83
  - path: "/baseline"
84
  method: "GET"
85
  optional:
server/requirements.txt CHANGED
@@ -10,3 +10,4 @@ openai>=1.54.4
10
  httpx>=0.27.0
11
  python-dotenv>=1.0.1
12
  pandas>=2.0.0
 
 
10
  httpx>=0.27.0
11
  python-dotenv>=1.0.1
12
  pandas>=2.0.0
13
+ websockets>=13.0