From the course: Creating Generative AI Solutions and Copilots with Azure AI Foundry (Formerly Azure AI Studio)

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Understanding nodes and tools in a flow

Understanding nodes and tools in a flow

- [Instructor] Every flow has an Inputs and an Outputs node. They represent the starting point and the end result, respectively. In between them, there are one or many other nodes that contain the logic that we want to implement in the flow. Those nodes, in the context of prompt flow, are called tools. Each tool can accept one or multiple inputs and produce one or multiple outputs, so a connection is established between nodes when one node receives an output from another. So for example, let's take the Lookup tool and then the Inputs node. So here, in the Inputs node, you can see that we're using this variable named question of type string. This is actually the prompt that the user is going to send to this copilot. And then, check this out, here in the Lookup tool, we're using question that comes from Inputs. That's why this blue arrow was created. There's a connection between Inputs and Lookup. Okay, so speaking…

Contents