studio-web
latest
false
- Notes de publication
- Démarrage
- Pour les administrateurs
- Projets de workflow RPA
- Créer un workflow RPA à partir d'une idée
- Créer un projet
- Comment démarrer un workflow RPA
- Gestion des fichiers et dossiers du projet
- Connecter des workflows RPA à vos comptes
- Configurer les activités
- Gérer les activités d'un projet
- Transmission de valeurs entre les activités
- Naviguer dans les éléments
- Gérer les données d'un projet
- Configurer un projet pour utiliser vos données
- Utiliser des ressources de fichiers et de dossiers
- Projets d'application
- Applications dans Studio Web
- Concevoir des projets d'application
- Débogage de projets d'application
- Publier, déployer et mettre à niveau des projets d’application
- Importer et exporter des projets d'application
- Travailler avec des entités dans un projet d'application
- Créer des applications accessibles
- Ajout de descripteurs accessibles
- Le libellé Accessible
- Utilisation de la commande Onglet pour l'accessibilité
- Concevoir des listes et des en-têtes accessibles
- Conception d'application réactive
- Taux de contraste des couleurs
- Prédéfinir les styles et les mappages au niveau de l'air pour la commande En-tête
- Limites connues
- Définir un contexte externe à l'aide de paramètres de requête
- Définir un contexte externe à l'aide d'événements externes
- Utiliser des tableaux pour remplir les commandes Liste déroulante, Liste déroulante à sélection multiple et Bouton radio
- Utiliser des contrôles tabulaires avec des entités Data Service dans les projets d'application
- Embed conversational agents
- Activités d'application
- Processus d’agent
- Agents
- Solutions
- Workflows d’API
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.

Guide de l'utilisateur Studio Web
Dernière mise à jour 13 janv. 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 NameParamètres requis
- agentId: Release ID of the published of the published conversational agent.
Paramètres facultatifs
- 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.