mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-06-15 20:05:58 +00:00
make ai follow-up suggestions optional (#3591)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user