JoeArmani
updates - new iteration with type token
7a0020b
raw
history blame
376 Bytes
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