-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68e9e54
commit 691b094
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: Forcing Tool Output as Result | ||
description: Learn how to force tool output as the result in of an Agent's task in crewAI. | ||
--- | ||
|
||
## Introduction | ||
In CrewAI, you can force the output of a tool as the result of an agent's task. This feature is useful when you want to ensure that the tool output is captured and returned as the task result, and avoid the agent modifying the output during the task execution. | ||
|
||
## Forcing Tool Output as Result | ||
To force the tool output as the result of an agent's task, you can set the `force_tool_output` parameter to `True` when creating the task. This parameter ensures that the tool output is captured and returned as the task result, without any modifications by the agent. | ||
|
||
Here's an example of how to force the tool output as the result of an agent's task: | ||
|
||
```python | ||
# ... | ||
# Define a custom tool that returns the result as the answer | ||
coding_agent =Agent( | ||
role="Data Scientist", | ||
goal="Product amazing resports on AI", | ||
backstory="You work with data and AI", | ||
tools=[MyCustomTool(result_as_answer=True)], | ||
) | ||
# ... | ||
``` | ||
|
||
### Workflow in Action | ||
|
||
1. **Task Execution**: The agent executes the task using the tool provided. | ||
2. **Tool Output**: The tool generates the output, which is captured as the task result. | ||
3. **Agent Interaction**: The agent my reflect and take learnings from the tool but the output is not modified. | ||
4. **Result Return**: The tool output is returned as the task result without any modifications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters