Skip to main content

Python SDK

The official Python SDK (pip install strongly) gives you typed sync and async clients over the entire Strongly.AI platform. Start with Getting Started, then use the resource reference below. Every resource page is generated from the SDK itself, so the signatures and behavior shown are exactly what the code does.

from strongly import Strongly

client = Strongly() # reads STRONGLY_API_KEY
for app in client.apps.list(status="running"):
print(app.name)
  • Typed - responses are pydantic models; create/update take explicit keyword arguments.
  • Sync + async - identical surface on Strongly and AsyncStrongly.
  • Auto-paginating - iterate client.<resource>.list(...) directly.
  • Identity-safe - your org and user come from the API key; you never set them.

Guides

Resources

Apps & Infrastructure

Apps · Add-ons · Data Sources · Projects · Workspaces · Volumes · Compute

Workflows

Workflows · Executions · Workflow Nodes

AI Gateway

AI Inference · AI Models · AI Provider Keys · AI Analytics

Agents

Agents · Agent Messages · Agent Router · Agent Sessions · Avatars · Code Sessions

Agent Library

Memory · Rules · Tasks · Prompts · Skills · Artifacts · Preferences

STAN Assistant

STAN · STAN Settings · STAN Memories · STAN Tasks

MLOps

Experiments · AutoML · Model Registry · Fine-Tuning · Drift Detection · A/B Tests

Governance & FinOps

Governance · FinOps Budgets · FinOps Costs · FinOps Resource Groups · FinOps Schedules

Platform

Users · Organizations · Marketplace · Data Forge · Streaming · Notifications · Dashboard · Analytics

Authentication

Authentication