The ultimate intelligence is flawless execution.
Agent Fleet is your enterprise-grade autonomous digital workforce.
Beyond Chat.
Current AI tools still trap users in step-by-step prompting and manual orchestration.
Agent Fleet transforms vague macro goals into silent autonomous workflows: decompose, retrieve, compare, compose, and deliver.
You define the objective. Fleet guarantees the outcome.
The Fleet Models.
One ecosystem. Full-spectrum intelligence.
⟁ Fleet-Flash
◎ Fleet-Max
Base URL https://agent-fleet.cn/v1
Endpoint POST /chat/completions · Auth Authorization: Bearer sk-af-***
from openai import OpenAI
client = OpenAI(
api_key="sk-af-REPLACE_ME",
base_url="https://agent-fleet.cn/v1"
)
resp = client.chat.completions.create(
model="fleet-pro",
messages=[
{"role": "system", "content": "你是一个执行智能体。"},
{"role": "user", "content": "整理今天待办并生成执行计划"}
],
stream=False
)
print(resp.choices[0].message.content)
from openai import OpenAI
client = OpenAI(
api_key="sk-af-REPLACE_ME",
base_url="https://agent-fleet.cn/v1"
)
resp = client.chat.completions.create(
model="fleet-pro",
messages=[
{"role": "system", "content": "You are an execution agent."},
{"role": "user", "content": "Organize today's todos into an execution plan"}
],
stream=False
)
print(resp.choices[0].message.content)
curl -X POST "https://agent-fleet.cn/v1/chat/completions" \
-H "Authorization: Bearer sk-af-REPLACE_ME" \
-H "Content-Type: application/json" \
-d '{
"model":"fleet-pro",
"messages":[{"role":"user","content":"执行:总结今日运营数据并给出动作建议"}],
"stream": false
}'
curl -X POST "https://agent-fleet.cn/v1/chat/completions" \
-H "Authorization: Bearer sk-af-REPLACE_ME" \
-H "Content-Type: application/json" \
-d '{
"model":"fleet-pro",
"messages":[{"role":"user","content":"Execute: summarize ops data and suggest actions"}],
"stream": false
}'
🦞OpenClaw
⚡Hermes
🔗LangChain
🤖AutoGPT
👥CrewAI
▶Cursor
⬡OpenAI API
◈MCP
Fleet 199
Fleet 299
Fleet 399
新建任务
输入你的目标,系统会自动拆解并执行。
你好,我是你的 AI 工作助手。你想让我帮你做什么?