Is it possible to use AIP Logic to create an agent that calls external apis on my behalf given Ontology context

Hello, I am currently working on a react app to help users find helpful connections. I currently have a workflow where a user uploads a pdf of their resume to a media set which triggers a pipeline to create a resume object in my Ontology with “extracted_text” and other useful categories such as “School, major, skillls etc”. I also have an intent object that stores the users “prompt” and “intent”.

What I want:
Using AIP logic, I want to trigger a workflow so that when a resume and Intent Object have been created, an AI agent or some LLM can look at them for context. Then given a list of LinkedIN APIs, it autofills the correct params for the right endpoint.

EXAMPLE. If the intent object has property “Find Insider Connections” its going to choose the /search/people endpoint and fill in the params with “recruiter” etc.

Ideally the results would get dumped into another object type containing all of the search results where I can further do semantic search to get the best results.

Also, since I am on the developer tier, I believe I dont have access to AI agent studio,

I think you should look into automate which let’s you trigger an AIP logic upon object creation and see egress docs for calling outside functions.

Ok, how do you recommend I implement the functions(inside of aip logic?)