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:ย 

Multi Agent Supervisor w/ Databricks App

mmoise
New Contributor II

Hello, how can I create a databricks app using multi agent supervisor (knowledge assistant + genie) with an interface?

1 ACCEPTED SOLUTION

Accepted Solutions

pavannaidu
Databricks Employee
Databricks Employee

@mmoise 

In the UI, when you create a Databricks App, you can select an existing chat template (see below), which will ask you for your model serving endpoint. In this context, you would provide the Multi Agent Supervisor's endpoint, which will be configured for the Chat App.  

Screenshot 2026-02-06 at 4.56.25โ€ฏPM.png

You can use this for reference to build a chat app. There are several templates to get started: https://docs.databricks.com/aws/en/generative-ai/agent-framework/chat-app

I hope this helps. 

View solution in original post

3 REPLIES 3

pavannaidu
Databricks Employee
Databricks Employee

@mmoise 

In the UI, when you create a Databricks App, you can select an existing chat template (see below), which will ask you for your model serving endpoint. In this context, you would provide the Multi Agent Supervisor's endpoint, which will be configured for the Chat App.  

Screenshot 2026-02-06 at 4.56.25โ€ฏPM.png

You can use this for reference to build a chat app. There are several templates to get started: https://docs.databricks.com/aws/en/generative-ai/agent-framework/chat-app

I hope this helps. 

mmoise
New Contributor II

Hi @pavannaidu , how do I improve the speed of the application? When I ask a question it takes a long time to respond.

pavannaidu
Databricks Employee
Databricks Employee

@mmoise Multi Agent Supervisor (MAS) is an orchestrator agent, so it depends on: 1) how many agents it orchestrates, 2) how complex those agents are, and 3) how complex the user prompt is. 

I would encourage you to review the MLflow experiment traces for the MAS agent to identify bottlenecks and determine how you can optimize the connected agents or provide additional context for MAS to correctly orchestrate. I have seen the biggest improvement when I provide sufficient context for MAS to leverage individual agents.

Lastly, provide examples in the "Examples" and provide guidelines for MAS to execute. This should improve quality and speed. Reference: https://docs.databricks.com/aws/en/generative-ai/agent-bricks/multi-agent-supervisor#step-4-improve-...