# Volcengine AI Text Ark Chat

> Text generation and chat completion on Volcengine ARK. Use when users need long-form writing, summarization, extraction, rewriting, Q&A, or prompt optimization with ARK text models.

- Skill: `modbender/volcengine-ai-text-ark-chat` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds add modbender/volcengine-ai-text-ark-chat`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/volcengine-ai-text-ark-chat/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/volcengine-ai-text-ark-chat

---


# volcengine-ai-text-ark-chat

Execute text/chat tasks on Volcengine ARK with stable parameter defaults and reproducible request templates.

## Execution Checklist

1. Verify `ARK_API_KEY`, endpoint ID, and region.
2. Clarify task type (chat, summarize, rewrite, extract).
3. Set safe defaults (`temperature`, `max_tokens`, `top_p`).
4. Return output plus key parameters used.

## Minimal Request Template

```bash
curl https://ark.cn-beijing.volces.com/api/v3/chat/completions \
  -H "Authorization: Bearer $ARK_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ep-xxxx",
    "messages": [{"role":"user","content":"请总结这段文本"}],
    "temperature": 0.2
  }'
```

## References

- `references/sources.md`

