mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
28 lines
780 B
Python
28 lines
780 B
Python
from typing import TYPE_CHECKING, List
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
from crewai.task import Task
|
|
from crewai.tasks.task_output import TaskOutput
|
|
|
|
|
|
def aggregate_raw_outputs_from_task_outputs(task_outputs: List["TaskOutput"]) -> str:
|
|
"""Generate string context from the task outputs."""
|
|
dividers = "\n\n----------\n\n"
|
|
|
|
# Join task outputs with dividers
|
|
context = dividers.join(output.raw for output in task_outputs)
|
|
return context
|
|
|
|
|
|
def aggregate_raw_outputs_from_tasks(tasks: List["Task"]) -> str:
|
|
"""Generate string context from the tasks."""
|
|
|
|
task_outputs = (
|
|
[task.output for task in tasks if task.output is not None]
|
|
if isinstance(tasks, list)
|
|
else []
|
|
)
|
|
|
|
return aggregate_raw_outputs_from_task_outputs(task_outputs)
|