22 lines
536 B
PHP
22 lines
536 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Plan Retention Policy
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| Archived plans are permanently deleted after this many days. This frees
|
||
|
|
| up storage and keeps the database lean over time.
|
||
|
|
|
|
||
|
|
| Set to 0 or null to disable automatic cleanup entirely.
|
||
|
|
|
|
||
|
|
| Default: 90 days
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
'plan_retention_days' => env('AGENTIC_PLAN_RETENTION_DAYS', 90),
|
||
|
|
|
||
|
|
];
|