Files
more_dots/schemas/agent_input.py
T

10 lines
211 B
Python
Raw Normal View History

2026-02-26 13:43:44 +08:00
from typing import Optional
from pydantic import BaseModel
class AgentInput(BaseModel):
"""Agent 输入模型"""
input: str
session_id: Optional[str] = None
workflow_type: str = "conversation"