-
Book Overview & Buying
-
Table Of Contents
Python Automation Cookbook - Third Edition
By :
We've seen how AI models are capable of generating text following instructions from a prompt, and how they can work with images. But that's not all they can do.
If you remember what we discussed in Chapter 11, the GenAI tool calls the AI model. The AI models can also understand the concept of a tool available in the GenAI tool, and request that it is called to process its output and iterate through it.
For example, a regular AI model cannot obtain the current weather, because it's not capable of obtaining information on what's going on right now. But if we add a tool capable of retrieving the weather in our GenAI tool, the AI model can request it to be executed and obtain the information as part of its context.
The process will be similar to the one shown in Figure 12.1. The GenAI tool adds, as part of the context, the fact that tools are available. The AI model requests the tool to execute them and come back with the result. And, finally,...