studio-web
latest
false
- Versionshinweise
- Erste Schritte
- Für Administrators
- RPA-Workflow-Projekte
- Erstellen eines RPA-Workflows aus einer Idee
- Erstellen eines Projekts
- So starten Sie einen RPA-Workflow
- Verwalten von Projektdateien und -ordnern
- Verbinden von RPA-Workflows mit Ihren Konten
- Konfigurieren von Aktivitäten
- Verwalten der Aktivitäten in einem Projekt
- Übergeben von Werten zwischen Aktivitäten
- Iterieren durch Elemente
- Verwalten der Daten in einem Projekt
- Konfigurieren eines Projekts zur Verwendung Ihrer Daten
- Verwenden von Datei- und Ordnerressourcen
- App-Projekte
- Apps in Studio Web
- Entwerfen von App-Projekten
- Debuggen von App-Projekten
- Veröffentlichen, Bereitstellen und Aktualisieren von App-Projekten
- Importieren und Exportieren von App-Projekten
- Arbeiten mit Entitäten in einem App-Projekt
- Erstellen zugänglicher Apps
- Hinzufügen zugänglicher Deskriptoren
- Die Beschriftung „Zugänglich“.
- Verwenden des Registerkartensteuerelements für Barrierefreiheit
- Entwerfen barrierefreier Listen und Überschriften
- reaktionsfähiges App-Design
- Farbkontrastverhältnis
- Legen Sie Stile und Zuordnungen auf Aria-Ebene für das Header-Steuerelement vor
- Bekannte Einschränkungen
- Legen Sie einen externen Kontext mithilfe von Abfrageparametern fest
- Legen Sie einen externen Kontext mithilfe externer Ereignisse fest
- Verwenden Sie Arrays, um Dropdown-Menüs, Dropdown-Menüs mit Mehrfachauswahl und Optionsfeld-Steuerelemente auszufüllen
- Verwenden Sie tabellarische Steuerelemente mit Data Service-Entitäten in App-Projekten
- Embed conversational agents
- App-Aktivitäten
- Agent-Prozesse
- Agenten
- Lösungen
- API-Workflows
Wichtig :
Bitte beachten Sie, dass dieser Inhalt teilweise mithilfe von maschineller Übersetzung lokalisiert wurde.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

Studio Web-Benutzerhandbuch
Letzte Aktualisierung 13. Jan. 2026
You can embed a Conversational Agent directly inside a UiPath App or any third-party application using an IFrame. This allows users to easily interact with agents without leaving the application.
- Create and publish a conversational agent.
- Open your app project in Studio and add an IFrame component to your page.
- Set the IFrame source URL using the following
format:
"https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=<title>&welcomeTitle=<welcome_title>&welcomeDescription=<welcome_description>&suggestions=<suggestions>""https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=<title>&welcomeTitle=<welcome_title>&welcomeDescription=<welcome_description>&suggestions=<suggestions>"Important: The Organization and the Tenant may be the agent's ID or the agent's NameErforderliche Parameter
- agentId: Release ID of the published of the published conversational agent.
Optionale Parameter
- mode - Can be
embeddedorfullscreen(default value isfullscreen). - title - The title of the chat component. Defaults to the name of the Agent.
- welcomeTitle - First run experience title displayed in the middle of screen. Defaults to an empty string
''. - welcomeDescription - First run experience description. Defaults to an empty string
''. - suggestions - First run experience suggestions. Defaults to an empty array
[]. Example:["Hi, what can you do", "Hello, how are you"].Note: To test on browser directly, wrap in one set of double quotes. For Apps embedding, wrap in two sets of double quotes. - showHistory - Show history panel. Defaults to
true. - jobStartOverrides - Overrides for the conversational-agent jobs that run when serving the conversation. When not passed in or when
runAsMeis undefined, CAS will run the job with default job-start settingsRunAsMe: false. Example:jobStartOverrides={"runAsMe":true}Note: To test on browser directly, wrap in one set of double quotes. For Apps embedding, wrap in two sets of double quotes.Example URL for embedding conversational agents in Apps
"https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=Conversational Agents&welcomeTitle=Welcome to conversational agents&welcomeDescription=Talk with your agent to get started&suggestions=[""Hi, what can you do"", ""Hello, how are you""]""https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=Conversational Agents&welcomeTitle=Welcome to conversational agents&welcomeDescription=Talk with your agent to get started&suggestions=[""Hi, what can you do"", ""Hello, how are you""]"
- Publish your app. Your agent is now embedded and ready to use.
- Create and publish a conversational agent.
- Add an
<iframe>element to your application where you want the conversational agent to appear. - Set the IFrame source attribute using the following
format:
"https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=<title>&welcomeTitle=<welcome_title>&welcomeDescription=<welcome_description>&suggestions=<suggestions>""https://<cloud_env>.uipath.com/<organization>/<tenant>/autopilotforeveryone_/conversational-agents/?agentId=<agent_id>&mode=embedded&title=<title>&welcomeTitle=<welcome_title>&welcomeDescription=<welcome_description>&suggestions=<suggestions>"
How do you retrieve the agentId?
- Navigate to Agents > Conversational Agents, open your agent, and copy the
agentIdfrom the URL.
Is there a way to make Conversational Agent public?
- Not yet. Public access requires additional work related to authentication, security, and licensing.
Is it possible to inject some context to the client?
- Support for injecting inputs into Conversational Agents is in development.