Skip to content
Merged
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
4 changes: 2 additions & 2 deletions vlmrun/client/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def create(

def execute(
self,
name: str,
name: str | None = None,
version: str | None = None,
inputs: Optional[dict[str, Any]] = None,
batch: bool = True,
Expand All @@ -134,7 +134,7 @@ def execute(
"""Execute an agent with the given arguments.

Args:
name: Name of the agent to execute
name: Name of the agent to execute. If not provided, we use the prompt to identify the unique agent.
version: Optional version of the agent to execute
inputs: Optional inputs to the agent
batch: Whether to process in batch mode (async)
Expand Down
2 changes: 1 addition & 1 deletion vlmrun/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "0.3.2"