File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,12 @@ ENV FUNCTION_COMMAND="python"
3131# Args to start the evaluation function with
3232ENV FUNCTION_ARGS="-m,evaluation_function.main"
3333
34- # The transport to use for the RPC server
35- ENV FUNCTION_RPC_TRANSPORT="ipc"
34+ # # The transport to use for the RPC server
35+ # ENV FUNCTION_RPC_TRANSPORT="ipc"
36+
37+ # Use file-based communication interface instead of RPC
38+ # This handles larger payloads better (shimmy writes input to file, reads output from file)
39+ # shimmy will append input/output file paths as the last two arguments
40+ ENV FUNCTION_INTERFACE="file"
3641
3742ENV LOG_LEVEL="debug"
Original file line number Diff line number Diff line change 2222def evaluation_function (
2323 response : Any ,
2424 answer : Any ,
25- params : Params ,
25+ params : Any ,
2626) -> Result :
2727 """
2828 Evaluate a student's pseudocode complexity.
You can’t perform that action at this time.
0 commit comments