diff --git a/vlmrun/client/agent.py b/vlmrun/client/agent.py index 7c68736..da6a79d 100644 --- a/vlmrun/client/agent.py +++ b/vlmrun/client/agent.py @@ -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, @@ -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) diff --git a/vlmrun/version.py b/vlmrun/version.py index 260c070..f9aa3e1 100644 --- a/vlmrun/version.py +++ b/vlmrun/version.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "0.3.2"