LeanServer API¶
This page documents the server classes responsible for communicating with the Lean REPL.
LeanServer¶
lean_interact.server.LeanServer
¶
Source code in lean_interact/server.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
|
__init__(config)
¶
This class is a Python wrapper for the Lean REPL. Please refer to the Lean REPL documentation to learn more about the Lean REPL commands.
âš Multiprocessing: instantiate one config before starting multiprocessing. Then instantiate one LeanServer
per process by passing the config instance to the constructor. This will ensure that the REPL is already set up
for your specific environment and avoid concurrency conflicts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
LeanREPLConfig
|
The configuration for the Lean server. |
required |
Source code in lean_interact/server.py
async_run(request, *, verbose=False, timeout=DEFAULT_TIMEOUT, **kwargs)
async
¶
Asynchronous version of run(). Runs the blocking run() in a thread pool.
Thread-safe: Uses a threading.Lock to ensure only one operation runs at a time.
Source code in lean_interact/server.py
run(request, *, verbose=False, timeout=DEFAULT_TIMEOUT, **kwargs)
¶
Run a Lean REPL request.
Thread-safe: Uses a threading.Lock to ensure only one operation runs at a time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
BaseREPLQuery
|
The Lean REPL request to execute. Must be one of the following types:
- |
required |
verbose
|
bool
|
Whether to print additional information |
False
|
timeout
|
float | None
|
The timeout for the request in seconds |
DEFAULT_TIMEOUT
|
Returns:
Type | Description |
---|---|
BaseREPLResponse | LeanError
|
Depending on the request type, the response will be one of the following: |
BaseREPLResponse | LeanError
|
|
BaseREPLResponse | LeanError
|
|
BaseREPLResponse | LeanError
|
|
Source code in lean_interact/server.py
run_dict(request, verbose=False, timeout=DEFAULT_TIMEOUT)
¶
Run a Lean REPL dictionary request and return the Lean server output as a dictionary. Args: request: The Lean REPL request to execute. Must be a dictionary. verbose: Whether to print additional information during the verification process. timeout: The timeout for the request in seconds Returns: The output of the Lean server as a dictionary.
Source code in lean_interact/server.py
Using run_dict
for custom REPLs¶
When working with custom REPL implementations that might have incompatible interfaces with LeanInteract's standard commands, you can use the run_dict
method to communicate directly with the REPL using the raw JSON protocol:
# Using run_dict to send a raw command to the REPL
result = server.run_dict({"cmd": "your_command_here"})
This method bypasses the command-specific parsing and validation, allowing you to work with custom REPL interfaces.
AutoLeanServer¶
lean_interact.server.AutoLeanServer
¶
Bases: LeanServer
Source code in lean_interact/server.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 |
|
__init__(config, max_total_memory=0.8, max_process_memory=0.8, max_restart_attempts=5, session_cache=None)
¶
This class is a Python wrapper for the Lean REPL. AutoLeanServer
differs from LeanServer
by automatically restarting when it runs out of memory to clear Lean environment states. It also automatically recovers from timeouts (). An exponential backoff strategy is used to restart the server, making this class slightly more friendly for multiprocessing
than LeanServer
when multiple instances are competing for resources. Please refer to the original Lean REPL documentation to learn more about the Lean REPL commands.
A session cache is implemented to keep user-selected environment / proof states across these automatic restarts. Use the add_to_session_cache
parameter in the different class methods to add the command to the session cache. AutoLeanServer
works best when only a few states are cached simultaneously. You can use remove_from_session_cache
and clear_session_cache
to clear the session cache. Cached state indices are negative integers starting from -1 to not conflict with the positive integers used by the Lean REPL.
Note: the session cache is specific to each AutoLeanServer
instance and is cleared when the instance is deleted. If you want truly persistent states, you can use the pickle
and unpickle
methods to save and load states to disk.
âš Multiprocessing: instantiate the config before starting multiprocessing. Then instantiate one LeanServer
per process by passing the config instance to the constructor. This will ensure that the REPL is already set up
for your specific environment and avoid concurrency conflicts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
LeanREPLConfig
|
The configuration for the Lean server. |
required |
max_total_memory
|
float
|
The maximum proportion of system-wide memory usage (across all processes) before triggering a Lean server restart. This is a soft limit ranging from 0.0 to 1.0, with default 0.8 (80%). When system memory exceeds this threshold, the server restarts to free memory. Particularly useful in multiprocessing environments to prevent simultaneous crashes. |
0.8
|
max_process_memory
|
float | None
|
The maximum proportion of the memory hard limit (set in |
0.8
|
max_restart_attempts
|
int
|
The maximum number of consecutive restart attempts allowed before raising a |
5
|
session_cache
|
BaseSessionCache | None
|
The session cache to use, if specified. |
None
|
Source code in lean_interact/server.py
async_run(request, *, verbose=False, timeout=DEFAULT_TIMEOUT, add_to_session_cache=False)
async
¶
Asynchronous version of run() for AutoLeanServer. Runs the blocking run() in a thread pool.
Source code in lean_interact/server.py
clear_session_cache(force=False)
¶
Clear the session cache.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
force
|
bool
|
Whether to directly clear the session cache. |
False
|
Source code in lean_interact/server.py
remove_from_session_cache(session_state_id)
¶
Remove an environment from the session cache.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session_state_id
|
int
|
The session state id to remove. |
required |
run(request, *, verbose=False, timeout=DEFAULT_TIMEOUT, add_to_session_cache=False)
¶
Run a Lean REPL request with optional session caching.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
BaseREPLQuery
|
The Lean REPL request to execute. Must be one of the following types:
- |
required |
verbose
|
bool
|
Whether to print additional information |
False
|
timeout
|
float | None
|
The timeout for the request in seconds |
DEFAULT_TIMEOUT
|
Returns:
Type | Description |
---|---|
BaseREPLResponse | LeanError
|
Depending on the request type, the response will be one of the following: |
BaseREPLResponse | LeanError
|
|
BaseREPLResponse | LeanError
|
|
BaseREPLResponse | LeanError
|
|