<?php

declare(strict_types=1);

return [
    'app' => [
        'name' => 'Asistente de Dictámenes',
        'base_url' => 'https://tu-dominio.cl',
        'timezone' => 'America/Santiago',
        'session_name' => 'dictamenes_session',
    ],
    'database' => [
        'host' => 'localhost',
        'port' => 3306,
        'name' => 'nombre_base_datos',
        'user' => 'usuario_base_datos',
        'password' => 'clave_base_datos',
        'charset' => 'utf8mb4',
    ],
    'openai' => [
        'api_key' => 'sk-REEMPLAZAR',
        'model' => 'gpt-5.6',
        'reasoning_effort' => 'high',
        'timeout_seconds' => 180,
        'allowed_domains' => [
            'contraloria.cl',
            'bcn.cl',
            'diariooficial.interior.gob.cl',
            'chilecompra.cl',
        ],
    ],
    'security' => [
        'install_key' => 'CAMBIAR-POR-UNA-CLAVE-LARGA',
        'max_login_attempts' => 5,
    ],
];
