mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 09:08:31 +00:00
Updated docs and telemetry to use raw instead of raw_output
This commit is contained in:
@@ -232,7 +232,7 @@ def callback_function(output: TaskOutput):
|
||||
print(f"""
|
||||
Task completed!
|
||||
Task: {output.description}
|
||||
Output: {output.raw_output}
|
||||
Output: {output.raw}
|
||||
""")
|
||||
|
||||
research_task = Task(
|
||||
|
||||
@@ -383,7 +383,7 @@ class Telemetry:
|
||||
{
|
||||
"id": str(task.id),
|
||||
"description": task.description,
|
||||
"output": task.output.raw_output,
|
||||
"output": task.output.raw,
|
||||
}
|
||||
for task in crew.tasks
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user