The official Python library for the Agentex API. Currently at version 0.12.0, with active development. Provides client classes for interacting with Agentex services, including agents, runs, and threads. Released under an MIT license.
pip install agentex-sdkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize the client with an API key from environment variable, then create a run or stream.
Iterate over the stream directly (e.g., for event in stream: ... ) instead of indexing.
Use 'assistant_id' instead of 'agent_id' when available.
Wrap API calls in a retry decorator, e.g., using tenacity.
Use: from agentex import Agentex
Iterate over the stream: for event in client.runs.create_stream(...): print(event)
No dependency data recorded yet.