21 lines
697 B
Properties
21 lines
697 B
Properties
# PDF Umbenenner Local Configuration Example
|
|
# AP-005: Copy this file to config/application.properties and adjust values for local development
|
|
|
|
# Mandatory M1 properties
|
|
source.folder=./work/local/source
|
|
target.folder=./work/local/target
|
|
sqlite.file=./work/local/pdf-umbenenner.db
|
|
api.baseUrl=http://localhost:8080/api
|
|
api.model=gpt-4o-mini
|
|
api.timeoutSeconds=30
|
|
max.retries.transient=3
|
|
max.pages=10
|
|
max.text.characters=5000
|
|
prompt.template.file=./config/prompts/local-template.txt
|
|
|
|
# Optional properties
|
|
runtime.lock.file=./work/local/lock.pid
|
|
log.directory=./work/local/logs
|
|
log.level=INFO
|
|
# api.key can also be set via environment variable PDF_UMBENENNER_API_KEY
|
|
api.key=your-local-api-key-here |