Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added =4.30.0
Empty file.
9 changes: 6 additions & 3 deletions vlmrun/client/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
)
Expand Down