Ship AI Faster
with managed, cloud-hosted AI packages
# Import Steamship
from steamship import Steamship
# Load a user-contributed package
api = Steamship.use('keyword-generator')
# Add AI to your app with a single line
keywords = api.invoke('generate', text=MY_ARTICLE)
Build with GPT-4 today
Full, built-in support for GPT-4. No API tokens necessary.
Steamship is a Managed Backend for AI services

Build with our low code framework.
Integrations with all major models are built-in.

Deploy for an instant API.
Scale and share without managing infrastructure.
Build Prompt APIs in Seconds
Turn a prompts, prompt-chains, and basic Python into a managed API.
Turn a clever prompt into a published API you can share. Add logic and routing smarts with Python
Recently published APIs:
keyword-generator
Generate keywords from an article or chunk of text.
By Dave
eli5
Explain difficult text to a five year old. (Or you on a slow day)
By Dave
generational-translator
Promoting understanding across generations. One phrase at a time.
By Doug
tldr
Generate a TL;DR of any text. Nobody needs to know.
By Enias
Mix and match models
Steamship connects to your favorite models and services, so that you don't have to learn a new API for every provider.









Combine and query results
Steamship persists model output in a standardized format
- Import, transcribe, or generate text.
- Run all the models you want on it.
- Query across the results with ShipQL.
from steamship import File, Steamship
ship = Steamship()
matching_files = File.query('
type "entity" AND
name "Elon Musk" AND
samefile {
type "sentiment" AND
name "NEGATIVE"
}
')