Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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

# Package: agentex-sdk
setup()