Skip to content

Commit

Permalink
Add explanation of use_native_tools
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed Jul 18, 2024
1 parent 4b4dd74 commit e4281ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/griptape-framework/tools/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Overview

One of the most powerful features of Griptape is the ability to use tools that can interact with the outside world.
Many of our [Prompt Drivers](../drivers/prompt-drivers.md) leverage the native function calling built into the LLMs. For LLMs that don't support this, Griptape provides its own implementation using the [ReAct](https://arxiv.org/abs/2210.03629) technique.
Many of our [Prompt Drivers](../drivers/prompt-drivers.md) leverage the native function calling built into the LLMs.
For LLMs that don't support this, Griptape provides its own implementation using the [ReAct](https://arxiv.org/abs/2210.03629) technique.

You can switch between the two strategies by setting `use_native_tools` to `True` (LLM-native tool calling) or `False` (Griptape tool calling) on your [Prompt Driver][../drivers/prompt-drivers.md].

## Tools
Here is an example of a Pipeline using Tools:
Expand Down

0 comments on commit e4281ae

Please sign in to comment.