This commit is contained in:
team 1
2026-05-06 13:36:40 +02:00
parent 55a8d23b65
commit 90023df24d
3 changed files with 84 additions and 97 deletions

View File

@@ -1140,6 +1140,19 @@ final class AgentRunnerConfig
return $this->getRequiredBool('shop_prompt.direct_result_guard.enabled');
}
public function isDirectShopResultGuardCompoundPrefixMatchEnabled(): bool
{
return $this->getOptionalBool('shop_prompt.direct_result_guard.compound_prefix_match.enabled', false);
}
/**
* @return string[]
*/
public function getDirectShopResultGuardCompoundPrefixTerms(): array
{
return $this->getOptionalStringList('shop_prompt.direct_result_guard.compound_prefix_match.terms');
}
public function isShopResultLengthSortEnabled(): bool
{
return $this->getRequiredBool('shop_prompt.length_sort.enabled');