We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be66d9c commit db3caddCopy full SHA for db3cadd
src/server.jl
@@ -3,6 +3,9 @@ LLM Benchmark MCP Server implementation
3
"""
4
5
# Load Revise once per process using OncePerProcess
6
+if VERSION < v"1.12"
7
+const load_revise = (args...,)->error("Only supported on 1.12")
8
+else
9
const load_revise = Base.OncePerProcess{Union{Module,Nothing}}() do
10
try
11
# Use PkgId to load Revise
@@ -13,6 +16,7 @@ const load_revise = Base.OncePerProcess{Union{Module,Nothing}}() do
13
16
return nothing
14
17
end
15
18
19
+end
20
21
22
Run the Unix socket server with optional Revise support.
0 commit comments