Replicate OCR plugin for Uploadista document processing
Replicate AI-powered OCR plugin for Uploadista Flow.
- DeepSeek-OCR: State-of-the-art OCR accuracy
- Multiple task modes: Markdown conversion, free OCR, figure parsing, object location
- Configurable resolution: Speed/accuracy tradeoff options
- Cost-effective: ~$0.005 per request (median)
``bash`
pnpm add @uploadista/flow-documents-replicate
`typescript
import { ReplicateDocumentAiPluginLive } from "@uploadista/flow-documents-replicate";
import { Effect } from "effect";
// Provide the plugin to your flow execution
const program = Effect.gen(function* () {
// Your flow logic here
}).pipe(Effect.provide(ReplicateDocumentAiPluginLive));
``
Best for: Documents, reports, articles
Best for: Simple text extraction, receipts, forms
Best for: Technical documents, presentations, infographics
Best for: Searching for specific information in documents
- tiny: Fastest, lowest accuracy
- small: Fast, moderate accuracy
- base: Balanced speed/accuracy
- gundam: Recommended (default)
- large: Slowest, highest accuracy
- Replicate API key (credential required)
- Internet connection for API calls
Approximately $0.005 per document (median cost). Actual cost depends on document complexity and resolution.
MIT