From 343b3a1468b1cdd23105281d445ad9f8d62dc9aa Mon Sep 17 00:00:00 2001 From: Max Dolan <147044155+maximillian-dolan@users.noreply.github.com> Date: Thu, 18 Sep 2025 11:36:49 +0100 Subject: [PATCH] Updating docstrings to reflect actual variable naming --- src/glean/api_client/agents.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/glean/api_client/agents.py b/src/glean/api_client/agents.py index 82d9f432..46ba77b5 100644 --- a/src/glean/api_client/agents.py +++ b/src/glean/api_client/agents.py @@ -545,7 +545,7 @@ def run_stream( Executes an [agent](https://developers.glean.com/agents/agents-api) run and returns the result as a stream of server-sent events (SSE). :param agent_id: The ID of the agent to run. - :param input: The input to the agent. + :param input_: The input to the agent. :param messages: The messages to pass an input to the agent. :param metadata: The metadata to pass to the agent. :param retries: Override the default retry configuration for this method @@ -644,7 +644,7 @@ async def run_stream_async( Executes an [agent](https://developers.glean.com/agents/agents-api) run and returns the result as a stream of server-sent events (SSE). :param agent_id: The ID of the agent to run. - :param input: The input to the agent. + :param input_: The input to the agent. :param messages: The messages to pass an input to the agent. :param metadata: The metadata to pass to the agent. :param retries: Override the default retry configuration for this method @@ -743,7 +743,7 @@ def run( Executes an [agent](https://developers.glean.com/agents/agents-api) run and returns the final response. :param agent_id: The ID of the agent to run. - :param input: The input to the agent. + :param input_: The input to the agent. :param messages: The messages to pass an input to the agent. :param metadata: The metadata to pass to the agent. :param retries: Override the default retry configuration for this method @@ -842,7 +842,7 @@ async def run_async( Executes an [agent](https://developers.glean.com/agents/agents-api) run and returns the final response. :param agent_id: The ID of the agent to run. - :param input: The input to the agent. + :param input_: The input to the agent. :param messages: The messages to pass an input to the agent. :param metadata: The metadata to pass to the agent. :param retries: Override the default retry configuration for this method