Files
MtoRagSystem/src/Config/ContextServiceConfig.php
2026-04-15 08:46:26 +02:00

12 lines
345 B
PHP

<?php
namespace App\Config;
class ContextServiceConfig
{
//Number of lines included in regular context. Intended for normal conversational continuity.
public const MAX_VISIBLE_REGULAR_LINES = 25;
//Number of lines included in full context. Intended for exceptional or diagnostic scenarios.
public const MAX_FULL_LINES = 500;
}