mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-01 07:13:00 +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"""
|
print(f"""
|
||||||
Task completed!
|
Task completed!
|
||||||
Task: {output.description}
|
Task: {output.description}
|
||||||
Output: {output.raw_output}
|
Output: {output.raw}
|
||||||
""")
|
""")
|
||||||
|
|
||||||
research_task = Task(
|
research_task = Task(
|
||||||
|
|||||||
@@ -383,7 +383,7 @@ class Telemetry:
|
|||||||
{
|
{
|
||||||
"id": str(task.id),
|
"id": str(task.id),
|
||||||
"description": task.description,
|
"description": task.description,
|
||||||
"output": task.output.raw_output,
|
"output": task.output.raw,
|
||||||
}
|
}
|
||||||
for task in crew.tasks
|
for task in crew.tasks
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user