From a4f078a2b685c222208da571204e090ca741ea0c Mon Sep 17 00:00:00 2001 From: SWE Destroyer Date: Tue, 24 Feb 2026 00:48:15 +0000 Subject: [PATCH 1/3] Add setup.py with project description comment Adds setup.py with a header comment explaining that the package is the official Python SDK for the Agentex REST API, covering agent lifecycle management, task tracking, secret management, and integrations with Temporal, FastAPI, and LiteLLM. Co-Authored-By: Claude Sonnet 4.6 --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..3b760bdc3 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +# Agentex Python API library +# +# This package provides the official Python SDK for the Agentex REST API, enabling +# developers to build, deploy, and manage AI agents on the Scale AgentEx platform. +# It includes type definitions for all request and response types, a Typer-based CLI +# (agentex), and both synchronous and asynchronous HTTP clients powered by httpx. +# +# The SDK supports agent lifecycle management (build, run, debug, deploy), task +# tracking, secret management, and integrations with Temporal workflows, FastAPI, +# and LiteLLM for multi-provider LLM support. +# +# Install from PyPI: +# pip install agentex-sdk +# +# For full documentation see: https://docs.gp.scale.com + +# This file exists for compatibility with tools that expect a setup.py. +# The canonical build configuration lives in pyproject.toml. +from setuptools import setup + +setup() From 1c65faa5aa972708bcc105f001c8514f3342ea52 Mon Sep 17 00:00:00 2001 From: SWE Destroyer Date: Tue, 24 Feb 2026 00:56:37 +0000 Subject: [PATCH 2/3] chore: add package name docstring to setup() call in setup.py Co-Authored-By: Claude Sonnet 4.6 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3b760bdc3..b9a17d15b 100644 --- a/setup.py +++ b/setup.py @@ -18,4 +18,5 @@ # The canonical build configuration lives in pyproject.toml. from setuptools import setup +# Package: agentex-sdk setup() From 5f321c30f66e02ed229e525da866b57c6e98f138 Mon Sep 17 00:00:00 2001 From: SWE Destroyer Date: Tue, 24 Feb 2026 01:09:37 +0000 Subject: [PATCH 3/3] Add one-line comment at top of pyproject.toml describing the project Adds a brief comment at the top of pyproject.toml summarizing that this is the Python SDK for the AgentEx API on Scale AI's agent platform. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 17e758d54..d31c4ad48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,4 @@ +# Python SDK for the AgentEx API — Scale AI's platform for building, deploying, and running AI agents. [project] name = "agentex-sdk" version = "0.9.4"