Skip to main content
Last Updated: March 18, 2025 By using our integrated custom LLM prompts, you can generate an action items list from your transcribed meetings. To use this, you just need to add the custom_prompt input parameter to your transcription request.

Custom input parameters

In this example, we’ll use a Python script to transcribe an audio file and tell it to use the custom_prompt input parameter to generate the action items. We’ll use the following input parameters:

Python script

We’re going to create a file and name it action-items.py. We’re then going to use the above parameters in the following Python script:
  • Make sure to replace url/to/audio/file.mp3 with the URL of your audio file.
  • Replace YOUR_SALAD_API_KEY with your Salad API key.
  • Replace YOUR_ORGANIZATION_NAME with your organization name.
  • Run the script using with python action-items.py.
In this script, we’re telling the LLM to read through the transcription, and generate a list of important action items. We’re also asking it to format it to be easily readable in markdown format. It will be returned in the llm_result field of the response. We’re then printing the result of this field to the console. Your console will look something like this once it finishes:

Output