为什么要选择 Big Pickle?
Big Pickle 是 OpenCode 团队在 Zen 网关上开启限时免费测试的神秘模型(Stealth Model)。
核心优势与特点
- Agent 场景优化:专门针对多文件联动修改、智能体工具调用进行了强化对齐。
- 实验性能力:包含了 OpenCode 在自动化编程方面的最新探索与推理微调。
- 完全免费测试:开发者只需获取 OpenCode API Key 即可零成本体验。
OpenCode Zen 网关提供的免费 Big Pickle API。
Big Pickle 是 OpenCode 团队在 Zen 网关上开启限时免费测试的神秘模型(Stealth Model)。
OpenCode Zen 联合各大模型厂商为收集开发者社区反馈,目前限时免费提供该模型。只需在 https://opencode.ai/auth 免费获取 API Key 即可使用标准 OpenAI 格式调用。
可在任何支持 OpenAI 格式的客户端(如 OpenAI Python SDK、Cursor、OpenCode CLI 或本站 Playground)中填写 Base URL 为 https://opencode.ai/zen/v1 即可调用。
Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.
Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.
curl https://opencode.ai/zen/v1/chat/completions \
-H "Authorization: Bearer $OPENCODE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "big-pickle",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://opencode.ai/zen/v1",
api_key="YOUR_OPENCODE_API_KEY",
)
response = client.chat.completions.create(
model="big-pickle",
messages=[{"role": "user", "content": "Write a python function."}],
)
print(response.choices[0].message.content)