Skip to content
Closed
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
8 changes: 4 additions & 4 deletions src/glean/api_client/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down