Can i create a ui interface for my conversational agent using uipath sdk?

i’m trying to execute my conversational agent outside of the UiPath studio web by developping an ui interface for chatbot, so i don’t know how to start, if you have any ideas or resources, can you help me ?

@Sal23

you can try with UiPath coded apps

also here is how to embed the conversational agent in any app

cheers

@Sal23

You can start from here:

Can you give me examples of applications that can be related to UiPath ?

@Sal23

Refer this recent UiPath Community session on Conversational agent.

Hi Sal23

just to add on what Anil and Ashok shared, there are basically two ways of doing this and it depends on how much control you want over the UI

the quick one is the iframe embedding from the docs above. You keep the chat interface UiPath already gives you and just drop it inside your own web app, a portal, sharepoint page, whatever. Almost no code, but you cant really change how the chat looks, only where it lives

the other way is building your own chat UI (react, streamlit, anything really) and calling the agent behind it through the API, thats probably what you had in mind with the SDK. It works but then auth, conversation state and rendering the responses are all on you, so its quite more work. I would only go this route if the design really needs to be custom

about your question on examples, think of an internal helpdesk assistant living in the company intranet, a customer portal where the agent answers order questions and triggers an RPA process to actually fetch the data, or a Teams bot fronting the agent. The pattern is always the same, the chat is just the front, the agent decides what to do, and your processes and API workflows do the real work behind it

if you are starting, maybe try the embed option first to validate the agent itself, and only invest in a custom UI once the agent behaves well. hope this helps

thank you so much for your response,
i used finally just the iframe and include it to the UiPath apps