In this guide, you’ll learn how to build a Relay app workflow that uses videos recorded with Tella to instantly draft help desk articles. This is the same approach we use at Tella: when we add a new video to a help center playlist, a workflow uses the video transcript to write a draft help article, creates that draft in Plain, and then notifies a teammate in Slack to review before publishing.
What you’ll build
You will create an Relay workflow that:- Triggers when a video is added to a Tella playlist
- Checks whether the playlist is intended for help center content
- Uses an AI step to write a help article from the video transcript
- Drafts the article in Plain using Plain’s API
- Sends a Slack message so you can review the draft before it is published
Step 1: Create the trigger in Relay app
- Create a new workflow in Relay app.
- Select an instant trigger.
- Choose the Tella trigger video added to playlist.
Step 2: Add a path or filter for help center playlists
Because the trigger fires for every playlist, you’ll want to ensure the workflow only runs for help center videos. In our case, the videos that goes on our help center are placed in a playlist containing “Help Center.” Set up a conditional path such as:- Continue only if the video playlist name contains help center.
Step 3: Write the help article with ai using the transcript
- Add an AI step (we’re using GPT 5.2).
- Provide instructions for the article format and content.
- Pass the video transcript into the ai step so the article is written based on what is said in the video.
Step 4: Draft the article in Plain using Plain’s API
- Add a step that calls Plain’s api.
- Use the ai output as the content for the help article.
- Create the article as a draft so it can be reviewed before publishing.
Step 5: Send a Slack notification to review the draft
- Add a Slack step after the draft is created.
- Send a message to yourself or your team to let them know a new AI drafted article is ready for review.