File size: 376 Bytes
7a0020b |
1 2 3 4 5 6 7 8 9 |
from dataclasses import dataclass
@dataclass
class PipelineConfig:
"""Minimal pipeline config."""
max_length: int = 512 # max length if you want to skip long utterances
min_turns: int = 4 # minimum total turns (user + assistant)
min_user_words: int = 3 # min words in each user turn
debug: bool = True # enable debug prints |