example_pipeline - MadBomber/aia GitHub Wiki
TODO: the audio-to-text is still under development.
Suppose you have an audio file of a meeting. You what to get a transcription of what was said in that meeting. Sometimes raw transcriptions hide the real value of the recording so you have crafted a pompt that takes the raw transcriptions and does a technical summary with a list of action items.
Create two prompts named transcribe.txt and tech_summary.txt
# transcribe.txt
# Desc: takes one audio file
# note that there is no "prompt" text only the directive
//config model whisper-1
//next tech_summary
and
# tech_summary.txt
//config model gpt-4o-mini
//config out_file meeting_summary.md
Review the raw transcript of a technical meeting,
summarize the discussion and
note any action items that were generated.
Format your response in markdown.
Now you can do this:
aia transcribe my_tech_meeting.m4a
You summary of the meeting is in the file meeting_summary.md