8 lines
183 B
Python
8 lines
183 B
Python
from schemas.agent_input import AgentInput
|
|
|
|
|
|
class StreamInputDTO(AgentInput):
|
|
"""流式输入 DTO(与统一 AgentInput 保持一致)"""
|
|
|
|
response_mode: str = "streaming"
|