Skip to content

Commit

Permalink
Always compute dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhai committed Oct 23, 2024
1 parent d6b5060 commit 79ea24c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions llmstack/apps/runner/app_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,7 @@ def _get_actor_configs_from_processors(
"is_tool": is_agent,
"output_template": processor.get("output_template", {"markdown": ""}) if is_agent else None,
},
dependencies=processor.get(
"dependencies",
self._compute_dependencies_from_processor(processor, allowed_processor_variables),
),
dependencies=self._compute_dependencies_from_processor(processor, allowed_processor_variables),
tool_schema=(
{
"type": "function",
Expand Down

0 comments on commit 79ea24c

Please sign in to comment.