Loading...
Loading...
Write a textual content based on given document(s) and requirements, using ZhiPu GLM-V multimodal model. Read and comprehend one or multiple documents (PDF/DOCX), write a content in Markdown format according to the specified requirements. Use when the user wants to draft a paper/article/essay/report/review/post/brief/proposal/plan, etc.
npx skill4agent add zai-org/glm-skills glmv-doc-based-writing| Type | Formats | Max Count | Source |
|---|---|---|---|
| Document (URL) | pdf, docx | 50 | URL |
| Document (Local) | pdf only | pages ≤ 50 total | Local path |
Local PDF / 本地 PDF: Local PDF files are converted page-by-page into images (base64) before sending to the model.is required (PyMuPDF). URL files support full formats including pdf/docx/txt. 本地 PDF 会自动逐页转为图片(base64)传给模型,需要安装pip install PyMuPDF(PyMuPDF)。URL 文件支持 pdf/docx/txt 等全格式。pip install PyMuPDF
| Resource | Link |
|---|---|
| Get API Key | https://bigmodel.cn/usercenter/proj-mgmt/apikeys |
| API Docs | Chat Completions / 对话补全 |
ZHIPU_API_KEYZHIPU_API_KEYopenclaw.jsonskills.entries.glmv-doc-based-writing.env"glmv-doc-based-writing": { "enabled": true, "env": { "ZHIPU_API_KEY": "你的密钥" } }~/.zshrcexport ZHIPU_API_KEY="你的密钥"💡 If you already configured another Zhipu skill (for exampleorzhipu-tools), they share the sameglmv-caption, so no extra setup is needed. 💡 如果你已为其他智谱 skill(如ZHIPU_API_KEY、zhipu-tools)配置过 key,它们共享同一个glmv-caption,无需重复配置。ZHIPU_API_KEY
python scripts/doc_based_writing.py \
--files "https://example.com/doucment1.pdf" "https://example.com/doucment2.docx" \
--requirements "基于这篇论文撰写公众号文章,要求偏技术风格"python scripts/doc_based_writing.py \
--files "https://example.com/doucment1.pdf" "https://example.com/doucment2.docx" \
--requirements "总结文档主要内容和核心观点" \
--output result.mdpython scripts/doc_based_writing.py \
--files "https://example.com/doucment1.pdf" "https://example.com/doucment2.docx" \
--criteria "撰写新闻稿" \
--output result.json --prettypython scripts/doc_based_writing.py \
--files "https://example.com/doucment1.pdf" \
--criteria "为这本书撰写书评" \
--system-prompt "你是一位拥有20年跨领域写作经验的资深写作专家,擅长撰写书评"XXXpython scripts/doc_based_writing.py --files FILE [FILE...] --requirements REQUIREMENTS [OPTIONS]| Parameter | Required | Description |
|---|---|---|
| ✅ | Document file URLs (pdf/docx, URL only, max 50) |
| ✅ | Writing requirements text |
| No | Model name (default: |
| No | Custom system prompt (default: professional HR assistant) |
| No | Sampling temperature 0-1 (default: 0.6) |
| No | Max output tokens (default: 10000) |
| No | Save result to file ( |
| No | Pretty-print JSON output |
ZHIPU_API_KEYwarning