mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
14 lines
306 B
Python
14 lines
306 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class CodeNodeLimits:
|
|
max_string_length: int
|
|
max_number: int | float
|
|
min_number: int | float
|
|
max_precision: int
|
|
max_depth: int
|
|
max_number_array_length: int
|
|
max_string_array_length: int
|
|
max_object_array_length: int
|