p59 + p60
This commit is contained in:
@@ -75,7 +75,8 @@ final class AgentRunnerConfig
|
||||
*/
|
||||
public function getCommercialTableFollowUpHistoryAnchorPatterns(): array
|
||||
{
|
||||
return $this->getRequiredStringList('follow_up_context.commercial_table_follow_up.history_anchor_patterns');
|
||||
return $this->genreStringList('context_resolution.commercial_table_follow_up.history_anchor_patterns')
|
||||
?: $this->getRequiredStringList('follow_up_context.commercial_table_follow_up.history_anchor_patterns');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -102,17 +103,20 @@ final class AgentRunnerConfig
|
||||
*/
|
||||
public function getCommercialTableFollowUpIndicatorMarkerPatterns(): array
|
||||
{
|
||||
return $this->getRequiredStringList('follow_up_context.commercial_table_follow_up.indicator_marker_patterns');
|
||||
return $this->genreStringList('context_resolution.commercial_table_follow_up.indicator_marker_patterns')
|
||||
?: $this->getRequiredStringList('follow_up_context.commercial_table_follow_up.indicator_marker_patterns');
|
||||
}
|
||||
|
||||
public function getCommercialTableFollowUpQueryTemplateWithModel(): string
|
||||
{
|
||||
return $this->getRequiredString('follow_up_context.commercial_table_follow_up.query_template_with_model');
|
||||
return $this->genreString('context_resolution.commercial_table_follow_up.query_template_with_model')
|
||||
?: $this->getRequiredString('follow_up_context.commercial_table_follow_up.query_template_with_model');
|
||||
}
|
||||
|
||||
public function getCommercialTableFollowUpQueryTemplateWithoutModel(): string
|
||||
{
|
||||
return $this->getRequiredString('follow_up_context.commercial_table_follow_up.query_template_without_model');
|
||||
return $this->genreString('context_resolution.commercial_table_follow_up.query_template_without_model')
|
||||
?: $this->getRequiredString('follow_up_context.commercial_table_follow_up.query_template_without_model');
|
||||
}
|
||||
|
||||
public function getFollowUpHistoryQuestionPattern(): string
|
||||
|
||||
Reference in New Issue
Block a user