- 基本情報
- Studio Web での UiPath Agents
- UiPath のコード化されたエージェント

Agents ガイド
Coded agents in Studio Web (Preview)
Coded agents in Studio Web is in Preview.
Coded agents let you define agent behavior directly in Python while still benefiting from UiPath orchestration, evaluation, and observability. Studio Web acts as the control plane, while your Integrated Development Environment (IDE) remains the primary development environment.
After connecting your local project, Studio Web provides access to:
- Definition — A high-level view of the agent entry points and configuration.
- Source code — A read-only view of synced files. Your IDE remains the authoritative source.
- Evaluation sets — Test cases for validating agent behavior.
- Evaluators — Output- and trajectory-based evaluators used during evaluation runs.
From Studio Web you can run Debug or Debug step-by-step, execute evaluations in the Evaluations space, and publish the agent for production use. Published agents emit traces visible in the Agent traces space and can be managed from the Managing UiPath agents page.
前提条件
- You have Python 3.11 or higher and either
piporuvinstalled. - You have authenticated with UiPath Automation Cloud by running
uipath authin your project directory. - You have created, initialized, and tested your coded agent project locally. Follow the quick start guide for your framework:
- You have access to Studio Web with a solution open or ready to create.
Create a coded agent in Studio Web
- studio.uipath.com に移動します。
- [新規作成] を選択し、[エージェント] を選択します。
- Select Coded as the agent type.
Result: Studio Web creates a coded agent shell and opens the Setup your coded agent page.
Connect your local project to Studio Web
On the Setup your coded agent page, Studio Web guides you through linking your local Python project to the agent.
Copy the project key
-
On the Setup your coded agent page, copy the Agent project key. Studio Web generates this key automatically for each solution project.
-
In your local project, open the
.envfile. -
Add the following line, replacing
<project-id-from-studio>with the key you copied:UIPATH_PROJECT_ID=<project-id-from-studio>UIPATH_PROJECT_ID=<project-id-from-studio>
This key links your local project to the agent in Studio Web.
Push your project to Studio Web
-
Open a terminal in your local project directory.
-
次のコマンドを実行します。
uipath pushuipath push
Result: Studio Web syncs the following files from your local project and automatically loads the coded agent content:
- Source files (for example,
graph.py,entry-points.json) - Configuration files (
pyproject.toml,uipath.json) - Evaluation assets (evaluators, evaluation sets)
- Metadata and bindings