- 概述
- UiPath 生成式 AI 活动
- Act! 365
- ActiveCampaign
- Adobe Acrobat Sign
- Adobe PDF 服务
- Amazon Bedrock
- Amazon Connect
- Amazon Polly
- 亚马逊 SES
- Amazon Transcribe
- Anthropic Claude
- Asana
- AWeber
- Azure AI 文档智能
- Azure Defender for Cloud
- Azure Maps
- BambooHR
- Box
- Brevo
- Calendly
- Campaign Monitor
- Cisco Webex Teams
- Citrix ShareFile
- 清除位
- Confluence Cloud
- Constant Contact
- Coupa
- CrewAI – 预览版
- Customer.io
- Database Hub - 预览版
- Databricks智能体
- Datadog
- 深度查找
- Deputy
- Discord - 预览
- DocuSign
- 水滴
- Dropbox
- Dropbox Business
- Egnyte
- Eventbrite
- 汇率
- Expensify
- Facebook
- Freshbooks
- Freshdesk
- Freshsales
- Freshservice
- 获取响应
- GitHub
- Google Maps
- Google 语音转文本
- Google 文本转语音
- Google Vertex
- Google Vision
- GoToWebinar
- Greenhouse
- Hootsuite
- HTTP Webhook
- HubSpot CRM
- HubSpot Marketing
- Icertis
- iContact
- Insightly CRM
- Intercom
- Jina.ai
- Jira
- Keap
- Klaviyo
- LinkedIn
- Mailchimp
- Mailjet
- MailerLite
- Mailgun
- Marketo
- Microsoft Azure OpenAI
- Microsoft Azure AI Foundry
- Microsoft Azure Sentinel
- Microsoft Dynamics CRM
- Microsoft Power Automate
- Microsoft Sentiment
- Microsoft Sentinel Threat Intelligence
- Microsoft Teams
- Microsoft Translator
- Microsoft Vision
- Miro
- 奥克塔
- OpenAI
- 符合 OpenAI V1 的 LLM
- Oracle Eloqua
- Oracle NetSuite
- PagerDuty
- Paypal
- PDFMonkey
- Perplexity
- Pinecone
- Pipedrive
- QuickBooks Online
- Quip
- Salesforce
- Salesforce Marketing Cloud
- SAP BAPI
- SAP Cloud for Customer
- SAP Concur
- SAP OData
- SendGrid
- ServiceNow
- Shopify
- Slack
- SmartRecruiters
- Smartsheet
- Snowflake
- Snowflake Cortex
- Stripe
- Sugar Enterprise
- Sugar Professional
- Sugar Sell
- Sugar Serve
- 探戈卡
- Todoist
- Trello
- Twilio
- UiPath Apps - Preview
- UiPath Orchestrator
- IBM WatsonX
- WhatsApp Business
- WOO COMMERCE
- 可行
- Workday
- Workday REST
- X(以前称为 Twitter)
- Xero
- Youtube
- Zendesk
- Zoho Campaigns
- Zoho Desk
- Zoho Mail
- 缩放
- Zoom 信息

Integration Service 活动
异步转换
应用程序:Google Speech-to-Text、Microsoft OneDrive、Google Cloud Platform
说明:使用 Google Speech-to-Text 将音频文件转换为文本。
工作流
-
假设您要转换的音频文件已上传到 Microsoft OneDrive & SharePoint 文件夹。因此,您可以使用“已创建文件”触发器开始流程。
备注:您可以从任何来源检索文件,例如 Google 云端硬盘、Box 和 Dropbox 等。
-
接下来,使用 Google Cloud Platform “获取存储桶”活动。这将检索您可以在其中上传音频文件的存储桶的详细信息。

-
添加 Google Cloud Platform“从文件中上传对象”活动,以将音频文件(从触发器的输出检索)上传到存储桶。
-
接下来,添加“获取对象”活动。现在,您可以使用“存储桶”和“对象名称”字段构建将在以下活动中使用的 Google Cloud Storage URI。
此 URI 应以
gs://开头。
-
添加将语音异步转换为文本活动。
此活动输出您将在后续步骤中使用的作业 ID 。

-
添加一个“后条件循环”活动并设置以下条件:
Status<>"success"(即状态不是“成功”)。
-
在“Do While 循环”活动中,添加一个“延迟”活动,以定期检查作业是已成功执行、失败还是待处理。
-
添加“按作业 ID 获取转换状态” ,并输入您从“将语音异步转换为文本” 的输出中检索到 的作业 ID 。
由于您使用的是 10 秒延迟,这意味着 Studio 每十秒检查一次作业状态。
-
添加“写入行”活动,以注册“按作业 ID 获取转换状态”的状态。收到“成功”状态后,工作流将转到下一步。
-
添加“按作业 ID 获取已转换的文本”活动,并输入与“将语音异步转换为文本”的输出检索到的相同作业 ID 。

-
添加“写入行” ,以输出使用“按作业 ID 获取已转换的文本”检索到的文本。

-