Files
lijiaoqiao/llm-gateway-competitors/litellm-wheel-src/litellm/llms/litellm_proxy/skills/constants.py

13 lines
362 B
Python
Raw Normal View History

"""
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."""