mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-06-15 11:56:01 +00:00
8 lines
271 B
Python
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")
|