From 9e57afff75779febce3f1cff79021e2607be6073 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 14 Aug 2025 23:08:07 +0000 Subject: [PATCH] Update AgentExecutionResponse model with optional fields and clarified descriptions Co-authored-by: dinesh --- =4.30.0 | 0 vlmrun/client/types.py | 9 ++++++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 =4.30.0 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)" )