mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-14 05:38:01 -05:00
fix(docs): update VISION_LLM_MODEL reference from gpt-4v to gpt-4o in README
Some checks are pending
Build and Push Docker Images / test (push) Waiting to run
Build and Push Docker Images / build-amd64 (push) Blocked by required conditions
Build and Push Docker Images / build-arm64 (push) Blocked by required conditions
Build and Push Docker Images / merge-manifests (push) Blocked by required conditions
Build and Push Docker Images / E2E Tests (push) Blocked by required conditions
Some checks are pending
Build and Push Docker Images / test (push) Waiting to run
Build and Push Docker Images / build-amd64 (push) Blocked by required conditions
Build and Push Docker Images / build-arm64 (push) Blocked by required conditions
Build and Push Docker Images / merge-manifests (push) Blocked by required conditions
Build and Push Docker Images / E2E Tests (push) Blocked by required conditions
This commit is contained in:
parent
569637389a
commit
67001d0ab1
1 changed files with 3 additions and 3 deletions
|
@ -120,7 +120,7 @@ services:
|
|||
# Option 1: LLM-based OCR
|
||||
OCR_PROVIDER: "llm" # Default OCR provider
|
||||
VISION_LLM_PROVIDER: "ollama" # openai or ollama
|
||||
VISION_LLM_MODEL: "minicpm-v" # minicpm-v (ollama) or gpt-4v (openai)
|
||||
VISION_LLM_MODEL: "minicpm-v" # minicpm-v (ollama) or gpt-4o (openai)
|
||||
OLLAMA_HOST: "http://host.docker.internal:11434" # If using Ollama
|
||||
|
||||
# Option 2: Google Document AI
|
||||
|
@ -191,7 +191,7 @@ paperless-gpt supports three different OCR providers, each with unique strengths
|
|||
|
||||
### 1. LLM-based OCR (Default)
|
||||
- **Key Features**:
|
||||
- Uses vision-capable LLMs like GPT-4V or MiniCPM-V
|
||||
- Uses vision-capable LLMs like gpt-4o or MiniCPM-V
|
||||
- High accuracy with complex layouts and difficult scans
|
||||
- Context-aware text recognition
|
||||
- Self-correcting capabilities for OCR errors
|
||||
|
@ -203,7 +203,7 @@ paperless-gpt supports three different OCR providers, each with unique strengths
|
|||
```yaml
|
||||
OCR_PROVIDER: "llm"
|
||||
VISION_LLM_PROVIDER: "openai" # or "ollama"
|
||||
VISION_LLM_MODEL: "gpt-4v" # or "minicpm-v"
|
||||
VISION_LLM_MODEL: "gpt-4o" # or "minicpm-v"
|
||||
```
|
||||
|
||||
### 2. Azure Document Intelligence
|
||||
|
|
Loading…
Reference in a new issue