Add complete scanner-workflow project with auto-scan functionality

This commit is contained in:
quiet
2026-02-14 19:55:08 -06:00
parent f2714198f9
commit 41ec7e94e7
6 changed files with 530 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Brother Scanner Configuration
# Directory where scanned PDFs will be saved
scan_dir: "scans"
# Brother scanner command (adjust based on your scanner model)
# For Brother DS-640, you might use: brscan-skey -s
brother_cmd: "brscan-skey -s"
# LLM API configuration (OpenAI-compatible)
# For OpenAI: https://api.openai.com/v1/chat/completions
# For Ollama: http://localhost:11434/v1/chat/completions
api_url: "http://localhost:11434/v1/chat/completions"
model: "llama3"