Tools in Gen AI Builder
Overview
One of the most powerful features of Gen AI Builder is the ability to use tools that interact with the outside world. Tools give the LLM abilities to invoke APIs, reference data sets, and expand their capabilities beyond simple text generation.
Many of our Prompt Drivers leverage the native function calling built into LLMs. For models that do not support this, Gen AI Builder provides its own implementation using the ReAct technique.
You can switch between these strategies by setting use_native_tools
to True
(LLM-native tool calling) or False
(Gen AI Builder tool calling) on your Prompt Driver.
Custom Tools
See Custom Tools for more information on building your own tools.
Tool Output and Task Memory
Output artifacts from all tool activities (except InfoArtifact
and ErrorArtifact
) are stored in short-term TaskMemory
. To disable this behavior, set the off_prompt
tool parameter to False
.
Using Tools in Pipelines
Gen AI Builder provides a set of official tools for accessing and processing data. You can also build your own tools.
Here is an example of a Pipeline using tools:
from griptape.structures import Pipeline from griptape.tasks import PromptTask from griptape.tools import FileManagerTool, PromptSummaryTool, WebScraperTool pipeline = Pipeline() pipeline.add_tasks( PromptTask( "Load https://www.griptape.ai, summarize it, and store it in a file called griptape.txt", tools=[ WebScraperTool(off_prompt=True), FileManagerTool(off_prompt=True), PromptSummaryTool(off_prompt=False), ], ), ) pipeline.run()
User: Thinking... Assistant: Hello! How can I assist you today? User: Exiting...
← Prev
Observability
↑ Up
Gen AI Builder: A Python Framework for Building Generative AI Applications
Next →
Custom Tools
Could this page be better? Report a problem or suggest an addition!