Tuesday, September 8, 2026

#1172 - Private Agent Framework - Workflow Components

Introduction

In this post I will go through the different components you can use in your workflows. I try to provide as much demos as possible, so you can really get a feel for what PAF workflows offer you. The post follows the flow of the component menu, so let's begin with Agents

Agents

An Agent you define and run in PAF. You give it instructions, a model and tools - it does the business for you. Check out some of my previous PAF posts for Agent examples.

An External Agent is a trusted, separately deployed agent reached over the Agent2Agent (A2A) protocol. In this case, PAF delegates the work to this agent, rather than hosting its logic.

For Fusion customers, these external agents could be hosted by Fusion AI Agent Studio -

You need to create an A2A Agent connection, in order to access such agents. This UI allows you to expose 

 

I don't have access to the Fusion IAM, which is required to get client id/secret for OAuth, so I'll use the following trivial workflow for my external agent demo -


The workflow convers the input to Gaelic - 

I publish the agent - 

Click on Integration Options -

Enable A2A

You will see 2 URLS - the discovery url and the invocation endpoint.

The former ends with /agent-card, while the latter ends with /rpc

The invocation url will be discovered from the agent card.

I now add this as an Agent Factory Agent - i.e. this can now be invoked via A2A from 3rd parties.


Clicking View raw JSON, will show the card details - 


Data Components

Current Date

As the name suggests, this provides the current-datetime for the time zone you select. 



Image Input

The image input component feeds into a VLM Agent. 

I upload the following jpeg - 

The full text - This image shows a musician performing live on stage, playing a silver flute. He has long, reddish-brown hair and a beard, and is dressed in an elaborate, colorful costume featuring a shiny, iridescent jacket in shades of purple, pink, and blue with black trim, light blue tights, and tall black leather boots. One leg is raised and bent, resting on part of the stage equipment. A microphone stand is positioned in front of him, suggesting the performance is being amplified. The background is dark, with parts of a drum kit visible, indicating a concert setting. The style and attire are reminiscent of 1970s rock performances.

grok doesn't seem to know Ian Anderson from Jethro Tull.

I now try with the following image - 

Now this is useful!

Read CSV File

Here's my cities.csv - 

Here's the workflow - 

Test in Playground

File upload

Here's the demo file I am using - 

Here's the workflow - 


I test in Playground

SQL Query

The SQL query is - Select * from orders

The agent custom instructions are -output the orders sorted by order value asc

Test in Playground


URL Crawler

Use URL Crawler to collect content from a website and pass it into the rest of a workflow as Markdown.

Here I use it to answer user questions on OIC service limits.

I set the seed urls to https://docs.oracle.com/en/cloud/paas/application-integration/oracle-integration-oci/service-limits.html


I run in Playground

URL to markdown content

The URL to Markdown component fetches one specific web page and converts its readable content into Markdown.

Use it when you already know the exact page you need—for example:

https://docs.example.com/product/setup

Then connect its Markdown output to an Agent for summarization, extraction, or Q&A.

Difference from URL Crawler:

URL to Markdown: one URL → one page’s content.
URL Crawler: one or more seed URLs → follows links and returns multiple pages/a site index.

Choose URL to Markdown for a focused page; choose URL Crawler for a documentation section or website.

Wikipedia Search

Note the use of the Text Combiner

I test in Playground

To get this to work, one needs to do the following - 

Disable memory


Summa Summarum

In this post, I have covered most of the components you can use in designing your workflow. Net, net, Private Agent Factory is a comprehensive and compelling agent framework. Do try it out! 



















  






















No comments:

Post a Comment