introduce llm key for script gen (#3736)

This commit is contained in:
Shuchang Zheng
2025-10-16 02:50:16 -07:00
committed by GitHub
parent b93154e7b7
commit c186418d41
3 changed files with 5 additions and 1 deletions

View File

@@ -112,7 +112,7 @@ async def _generate_field_names_with_llm(custom_field_actions: List[Dict[str, An
template="generate-workflow-parameters", custom_field_actions=custom_field_actions
)
response = await app.SECONDARY_LLM_API_HANDLER(prompt=prompt, prompt_name="generate-workflow-parameters")
response = await app.SCRIPT_GENERATION_LLM_API_HANDLER(prompt=prompt, prompt_name="generate-workflow-parameters")
return GeneratedFieldMapping.model_validate(response)