This commit is contained in:
team 1
2026-05-01 19:49:43 +02:00
parent a42f8d656d
commit 1897fdf0eb
9 changed files with 215 additions and 0 deletions

View File

@@ -339,6 +339,22 @@ final class AgentRunnerConfig
return $this->getRequiredStringListMap('rag_evidence_guard.synonyms');
}
/**
* @return string[]
*/
public function getRagEvidenceAggregateQueryPatterns(): array
{
return $this->getRequiredStringList('rag_evidence_guard.aggregate_query_patterns');
}
/**
* @return string[]
*/
public function getRagEvidenceAggregateEvidenceTerms(): array
{
return $this->getRequiredStringList('rag_evidence_guard.aggregate_evidence_terms');
}
public function getNoLlmFallbackShopOnlyMessage(): string
{
return $this->getRequiredString('no_llm_fallback.messages.shop_only');