Files
deer-flow/backend/packages/harness/deerflow/config/suggestions_config.py
T
2026-06-15 17:59:25 +08:00

8 lines
271 B
Python

from pydantic import BaseModel, Field
class SuggestionsConfig(BaseModel):
"""Configuration for automatic follow-up suggestions."""
enabled: bool = Field(default=True, description="Whether to enable follow-up question suggestions at the end of an AI response")