diff --git a/=4.30.0 b/=4.30.0 new file mode 100644 index 0000000..e69de29 diff --git a/vlmrun/client/types.py b/vlmrun/client/types.py index adb5b40..858bd8d 100644 --- a/vlmrun/client/types.py +++ b/vlmrun/client/types.py @@ -187,9 +187,12 @@ class FeedbackListResponse(BaseModel): class AgentExecutionResponse(BaseModel): """Response to the agent execution request.""" - id: str = Field(..., description="ID of the agent") - name: str = Field(..., description="Name of the agent") - version: str = Field(..., description="Version of the agent.") + id: str = Field(..., description="ID of the execution") + agent_id: Optional[str] = Field( + default=None, description="ID of the agent associated with the execution" + ) + name: Optional[str] = Field(default=None, description="Name of the agent") + version: Optional[str] = Field(default=None, description="Version of the agent.") created_at: datetime = Field( ..., description="Date and time when the agent was created (in UTC timezone)" )