add multi model

This commit is contained in:
team 1
2026-05-11 20:10:55 +02:00
parent a01ca045dc
commit d497454da1
6 changed files with 271 additions and 16 deletions

View File

@@ -18,3 +18,10 @@ parameters:
# Hard upper bound for generated output tokens. Prevents runaway repeated answers
# before they can become very long streamed or blocking responses.
retriex.llm.num_predict: 2048
# Optional model override per existing LLM call.
# null or an empty value keeps the active default model from ModelGenerationConfig.
retriex.llm.call_models:
input_normalization: null
shop_query_optimization: null
final_answer: null

View File

@@ -200,6 +200,7 @@ services:
App\Agent\AgentRunner:
arguments:
$llmCallModels: '%retriex.llm.call_models%'
$debug: '%env(bool:AI_DEBUG)%'
$logPrompt: '%env(bool:AI_LOG_PROMPT)%'
$logContext: '%env(bool:AI_LOG_CONTEXT)%'