EN中文

Quick Start

快速开始

Reference an image file path in your prompt — seek auto-detects and OCRs it before sending to the model:

在 prompt 中引用图片文件路径:

你:修复这个 @error.png 中的错误

    ↓ seek 自动检测图片引用 → OCR → 追加文字块

模型看到的:修复这个 @error.png 中的错误

[image: error.png — OCR]
TypeError: Cannot read properties of undefined (reading 'map')
    at renderList (components/List.tsx:42)
[/image: error.png]

Supported formats: .png .jpg .jpeg .webp .tiff .bmp .heic .gif

支持的图片格式:.png .jpg .jpeg .webp .tiff .bmp .heic .gif

Platform Support

平台支持

PlatformDefault默认状态Engine引擎
macOS✅ OnBuilt-in vision_ocr (Swift + Apple Vision API), auto-compiled on first use内置 vision_ocr,首次自动编译
Linux❌ OffRequires ocr.command config (e.g. tesseract)需配置 ocr.command(如 tesseract)
Windows❌ OffRequires ocr.command config需配置 ocr.command

Configuration

配置

In ~/.seek/config.json:

在 ~/.seek/config.json 中:

{
  "ocr": {
    "enabled": true,               // Override platform default
    "command": "tesseract",         // Custom OCR engine
    "languages": "zh-Hans,en-US", // Language hint
    "timeout_seconds": 15        // Per-call timeout
  }
}

Design: PRD feature-image-ocr.md

设计文档:PRD feature-image-ocr.md