autopilot
latest
false
Autopilot 用户指南
- 入门指南
- 功能
- Data privacy and governance
- 产品可用性
- Earlier Autopilot capability sets
- Autopilot for Everyone
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
Guide to writing effective prompts for generating accurate automations with the Autopilot agent experience.
This guide helps you write effective prompts and prepare necessary resources for creating accurate workflows with the Autopilot agent experience.
For general prompting tips, refer to Writing effective prompts.
提供清晰且单独的说明
将任务分解为小而清晰的操作。当出现简明单独的步骤提示时,Autopilot 会生成准确的序列。
提示示例
- “登录 ACME,下载文件,然后通过电子邮件发送。”
- 对于If-Else活动:“如果用户名和密码为空,则记录消息‘无法从资产中提取凭据’。”Else 日志消息“已正确提取凭据详细信息”。
为用户界面自动化准备对象存储库
- 先在对象存储库中定义用户界面元素。否则,用户界面自动化可能会失败。
- 确保元素具有准确的名称和上下文,以帮助 Autopilot 在语义上匹配元素。
预创建 Orchestrator 资产
Assets are shared variables or credential resources in Orchestrator. Make sure assets already exist in an Orchestrator folder before using them in an automation, as Autopilot cannot create assets dynamically.
提示示例
- 模糊:“请使用凭据登录。”
- 更好:“从 ACME 凭据资产中获取值。”
- 最佳:“从 ACME_credential 资产中获取值,该资产位于 Orchestrator 的 Test 文件夹中。”
预创建 Orchestrator 队列
队列是容器,可用于保存不限数量的队列项目。在自动化中使用队列之前,请确保 Orchestrator 文件夹中存在队列,因为 Autopilot 无法动态创建队列。
提示示例
- 模糊:“使用队列插入数据。”
- 更好:“将事务插入队列 ACMELoan。”
- 最佳:“将事务插入队列 ACMELoan,该队列位于 Orchestrator 的 Test 文件夹中。”
明确指定活动
明确要使用的活动。Autopilot 优先使用当前工作流中先前使用的活动。
提示示例
- 显式:“使用 UIAutomation 发送电子邮件,而不是 Outlook。”
了解 Autopilot 受限上下文
Autopilot 仅识别当前文件中的资源:
- 在当前文件中定义的变量。
- 当前工作流中先前使用的活动。
- 可通过 Data Manager 获取的资产和包。
Autopilot 无法访问:
- 其他工作流文件。
- 全局变量。
- 完整的项目结构。