Introduction
AI Inference Platform
Agents. Models. Serverless.
Build autonomous AI agents, access 200+ models through a unified API, or deploy your own custom models with serverless GPUs. One platform, pay per use.
Quick Examples
Three products, one platform
- Agents
- Models API
- Serverless
from flymyai import AgentClient
client = AgentClient(api_key="fly-***")
agent = client.agents.create(
name="Research Assistant",
goal="Research {{ topic }} and return a summary with sources.",
tools=["web_search", "browse_website"],
input_schema={
"type": "object",
"properties": {
"topic": {"type": "string", "description": "Topic to research"}
},
"required": ["topic"]
}
)
run = client.runs.create(
agent_id=agent.id,
input={"topic": "AI agents in enterprise"}
)
result = client.runs.wait(run.id)
print(result.output)
from flymyai import client
fma = client(apikey="fly-***")
response = fma.predict(
model="flymyai/SDXLTurbo",
payload={"prompt": "A cat in space"}
)
# Deploy your model
fma login
fma init my-model
fma deploy my-model
# Run inference
curl -X POST https://api.flymy.ai/api/v1/you/my-model/predict \
-H "x-api-key: fly-***" \
-F "input=hello world"
Why FlyMy.AI
Built for production
01
Autonomous Agents
Build agents that plan, execute tools, and deliver results autonomously. Publish to the marketplace and earn from every run.
02
200+ Models, One API
Image generation, video synthesis, LLMs — unified endpoint. No GPU management, no infrastructure overhead.
03
Serverless GPU Deployment
Deploy any Python model as a serverless endpoint. Auto-scaling from zero to millions. Pay only when your model runs.
Explore
Popular Models
| Model | Type | Speed |
|---|---|---|
| SDXLTurbo | Image Generation | Ultra-fast |
| NanoBananaPro | Image Generation | Fast |
| Flux Dev Fast | Image Generation | Fast |
| Flux Schnell Fast | Image Generation | Ultra-fast |
| Veo 3.1 | Video Generation | Async |
Browse all models at FlyMy.AI.
Support
Get Help
Discord Community
Chat with the team and other developers.
GitHub
Report issues, browse SDKs, and contribute.
Follow Updates
Latest model releases and platform news.
Next
Continue Reading
- Agents Overview — build and monetize autonomous AI agents
- Models Quickstart — generate your first image in under a minute
- Python SDK — full Python client reference
- JavaScript SDK — full JS/TS client reference
- Serverless Guide — deploy custom models with
fma