| name | appnz-provider-together |
| description | Use this skill when the user asks to use Together AI, provider together, or any together model through app.nz; covers model selection when present, BYOK setup, OpenAI-compatible routing, provider-specific endpoints, aliases, and debugging gateway headers. |
Together AI on app.nz
Route Together AI through app.nz with one app.nz key. Use this skill when a user asks for Together AI, together, one of its model ids, aliases, product integrations, or BYOK setup for this provider.
Workflow
- Use
/api/gateway/models?provider=together to confirm the current public model list if exact availability matters.
- Call app.nz at
https://app.nz/v1 with Authorization: Bearer pk_live_...; do not call https://api.together.xyz directly unless the user explicitly asks to bypass app.nz.
- Store a user-owned upstream key with
POST /api/gateway/provider-keys using provider together when BYOK is required. The upstream secret is never returned by app.nz.
- Prefer a model matching the task modality. If unsure, start with
glm-5 or app/auto.
- Read
X-Gateway-Provider and X-Gateway-Model response headers when debugging routing.
BYOK
curl -sX POST https://app.nz/api/gateway/provider-keys \
-H "Authorization: Bearer pk_live_..." \
-H "Content-Type: application/json" \
-d '{"provider":"together","api_key":"REDACTED_UPSTREAM_KEY"}'
Chat Example
curl -s https://app.nz/v1/chat/completions \
-H "Authorization: Bearer pk_live_..." \
-H "Content-Type: application/json" \
-d '{"model":"glm-5","messages":[{"role":"user","content":"Give me one practical idea."}]}'
Models
| Model | Modality | Aliases | Caps |
|---|
| flux-dev | image | - | - |
| flux-pro | image | - | - |
| flux-schnell | image | flux-fast | - |
| glm-4.7 | chat | glm4 | stream, tools |
| glm-5 | chat | glm5, glm-5-fp4 | stream, tools |
| glm-5.1 | chat | glm5.1, glm-51 | stream, tools |
| kimi-k2.5 | chat | kimi | stream, tools |
| minimax-m2.5 | chat | minimax | stream, tools |
| qwen3-coder | chat | qwen-coder | stream, tools |
| qwen3.5-397b | chat | qwen3.5 | stream, tools |
| stable-diffusion-3 | image | sd3 | - |
| together/deepseek-r1 | chat | - | stream |
| together/deepseek-v3.1 | chat | - | stream, tools |