Utilizing Genie AI with Workflows
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2025 01:26 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2025 09:30 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2025 10:06 AM
thank you