返回顶部
l

llmwhisperer

Extract text and layout from images and PDFs using LLMWhisperer API. Good for handwriting and complex forms.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.0.7
安全检测
已通过
2,960
下载量
1
收藏
概述
安装方式
版本历史

llmwhisperer

# LLMWhisperer Extract text from images and PDFs using the [LLMWhisperer API](https://unstract.com/llmwhisperer/) — great for handwriting and complex forms. ## Configuration Requires `LLMWHISPERER_API_KEY` in `~/.clawdbot/.env`: ```bash echo "LLMWHISPERER_API_KEY=your_key_here" >> ~/.clawdbot/.env ``` ### Get an API Key Get a free API key at [unstract.com/llmwhisperer](https://unstract.com/llmwhisperer/). - **Free Tier:** 100 pages/day ## Usage ```bash llmwhisperer <file> ``` ## Script Source The executable script is located at `scripts/llmwhisperer`. ```bash #!/bin/bash # Extract text using LLMWhisperer API if [ -z "$LLMWHISPERER_API_KEY" ]; then if [ -f ~/.clawdbot/.env ]; then # shellcheck disable=SC2046 export $(grep -v '^#' ~/.clawdbot/.env | grep 'LLMWHISPERER_API_KEY' | xargs) fi fi if [ -z "$LLMWHISPERER_API_KEY" ]; then echo "Error: LLMWHISPERER_API_KEY not found in env or ~/.clawdbot/.env" exit 1 fi FILE="$1" if [ -z "$FILE" ]; then echo "Usage: $0 <file>" exit 1 fi curl -s -X POST "https://llmwhisperer-api.us-central.unstract.com/api/v2/whisper?mode=high_quality&output_mode=layout_preserving" \ -H "Content-Type: application/octet-stream" \ -H "unstract-key: $LLMWHISPERER_API_KEY" \ --data-binary "@$FILE" ``` ## Examples **Print text to terminal:** ```bash llmwhisperer flyer.jpg ``` **Save output to a text file:** ```bash llmwhisperer invoice.pdf > invoice.txt ``` **Process a handwritten note:** ```bash llmwhisperer notes.jpg ```

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 llmwhisperer-1776390913 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 llmwhisperer-1776390913 技能

通过命令行安装

skillhub install llmwhisperer-1776390913

下载 Zip 包

⬇ 下载 llmwhisperer v0.0.7

文件大小: 1.41 KB | 发布时间: 2026-4-17 15:25

v0.0.7 最新 2026-4-17 15:25
- Added the full llmwhisperer shell script directly to SKILL.md for easier reference.
- Clarified script location as scripts/llmwhisperer instead of a user-home subdirectory path.
- No changes to installation or usage instructions; example usage unchanged.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部