19 lines
710 B
Plaintext
19 lines
710 B
Plaintext
# Minimal test configuration for MinerU
|
|
# Copy to .env and adjust as needed
|
|
|
|
# MinerU Configuration
|
|
MINERU_API_TYPE=self_hosted
|
|
MINERU_API_URL=http://mineru:8000
|
|
MINERU_LEARN_TYPE=9
|
|
MAX_CONCURRENT_API_CALLS=2
|
|
MINERU_VERBOSE=true
|
|
|
|
# Enable test mode
|
|
TEST_MODE=true
|
|
LOG_LEVEL=INFO
|
|
|
|
# MaxKB Model Configuration (optional)
|
|
# Use actual UUIDs from your MaxKB installation
|
|
# Example: get UUIDs by running: docker exec maxkb-dev /opt/py3/bin/python -c "from models_provider.models import Model; from django.db.models import QuerySet; [print(f'{m.name}: {m.id}') for m in QuerySet(Model).all()[:5]]"
|
|
# MAXKB_LLM_MODEL_ID=0198cbd9-c1a6-7b13-b16d-d85ad77ac03d
|
|
# MAXKB_VISION_MODEL_ID=0198cbd9-c1a6-7b13-b16d-d85ad77ac03d |