返回顶部
l

llmwhispererLLM文本提取

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,966
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

llmwhisperer

LLMWhisperer

使用LLMWhisperer API从图像和PDF中提取文本——非常适合手写内容和复杂表单。

配置

需要在~/.clawdbot/.env中设置LLMWHISPERERAPIKEY:
bash
echo LLMWHISPERERAPIKEY=yourkeyhere >> ~/.clawdbot/.env

获取API密钥

unstract.com/llmwhisperer获取免费API密钥。
  • - 免费套餐: 每天100页

使用方法

bash
llmwhisperer <文件>

脚本来源

可执行脚本位于scripts/llmwhisperer。

bash
#!/bin/bash

使用LLMWhisperer API提取文本

if [ -z $LLMWHISPERERAPIKEY ]; then
if [ -f ~/.clawdbot/.env ]; then
# shellcheck disable=SC2046
export $(grep -v ^# ~/.clawdbot/.env | grep LLMWHISPERERAPIKEY | xargs)
fi
fi

if [ -z $LLMWHISPERERAPIKEY ]; then
echo 错误:在环境变量或~/.clawdbot/.env中未找到LLMWHISPERERAPIKEY
exit 1
fi

FILE=$1
if [ -z $FILE ]; then
echo 用法:$0 <文件>
exit 1
fi

curl -s -X POST https://llmwhisperer-api.us-central.unstract.com/api/v2/whisper?mode=highquality&outputmode=layout_preserving \
-H Content-Type: application/octet-stream \
-H unstract-key: $LLMWHISPERERAPIKEY \
--data-binary @$FILE

示例

将文本输出到终端:
bash
llmwhisperer flyer.jpg

将输出保存到文本文件:
bash
llmwhisperer invoice.pdf > invoice.txt

处理手写笔记:
bash
llmwhisperer notes.jpg

标签

skill ai

通过对话安装

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

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 llmwhisperer-1776390913 技能

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

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

通过命令行安装

skillhub install llmwhisperer-1776390913

下载

⬇ 下载 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
返回顶部