cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Generative AI
Explore discussions on generative artificial intelligence techniques and applications within the Databricks Community. Share ideas, challenges, and breakthroughs in this cutting-edge field.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Utilizing Genie AI with Workflows

stexil
New Contributor

As subject says, is this possible via creating a python script that calls agent.predict etc...? Similar to this

agent.predict( { "messages": [{"role": "user", "content": "...the question we want to ask Genie..."}], } )

I want to implement Genie AI, and its results to through a workflow pipeline.

2 REPLIES 2

dkushari
Databricks Employee
Databricks Employee

Hi @stexil, you can achieve this by using Genie as an agent in a multi-agent system. If you prefer to use code then follow this - https://docs.databricks.com/aws/en/generative-ai/agent-framework/multi-agent-genie#gsc.tab=0. If you want to use point and click, use AgentBricks - https://docs.databricks.com/aws/en/generative-ai/agent-bricks/multi-agent-supervisor#gsc.tab=0.

dkushari_0-1761150573292.png

 

thank you