13 lines
362 B
Python
13 lines
362 B
Python
"""
|
|
Constants for LiteLLM Skills
|
|
|
|
Centralized constants for skills processing, code execution, and sandbox configuration.
|
|
"""
|
|
|
|
# Code execution loop settings
|
|
DEFAULT_MAX_ITERATIONS: int = 10
|
|
"""Maximum number of iterations for the automatic code execution loop."""
|
|
|
|
DEFAULT_SANDBOX_TIMEOUT: int = 120
|
|
"""Default timeout in seconds for sandbox code execution."""
|