ACP to TCP transformation request.
| 61 | message: str = Field(default="", description="The message of the transformation.") |
| 62 | |
| 63 | class A2TRequest(BaseModel): |
| 64 | """ACP to TCP transformation request.""" |
| 65 | type: str = Field(default="a2t", description="The type of transformation.") |
| 66 | agent_names: List[str] = Field(default=[], description="The names of the agents to transform.") |
| 67 | |
| 68 | class A2TResponse(BaseModel): |
| 69 | """ACP to TCP transformation response.""" |