openai · OpenAI Platform Docs
Meeting minutes
A multi-step implementation guide for building an automated meeting minutes generator using Whisper for audio transcription and GPT-4 for text analysis, including summary extraction, action item identification, and se...
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Meeting minutes
A multi-step implementation guide for building an automated meeting minutes generator using Whisper for audio transcription and GPT-4 for text analysis, including summary extraction, action item identification, and se...
When To Use
Use when you need to build a pipeline that converts audio recordings into structured text summaries, action items, and sentiment reports.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/meeting-minutes-workflow-guide.md | A tutorial guide for building an automated meeting minutes generator using Whisper for transcription and GPT-4 for summarization and action item extraction. | Questions about a tutorial guide for building an automated meeting minutes generator using Whisper for transcription and GPT-4 for su... |
examples/meeting-minutes-openai-meeting-minutes-setup.bash | Bash commands to create a virtual environment and install the openai and python-docx packages. | Exact payloads, commands, or snippets shown in Bash commands to create a virtual environment and install the openai and python-docx packages. |
examples/meeting-minutes-openai-meeting-minutes-python-transcription-docx.python | A Python script that uses the OpenAI Whisper model to transcribe audio files and prepares data for meeting minutes processing. | Exact payloads, commands, or snippets shown in A Python script that uses the OpenAI Whisper model to transcribe audio files and prepares data for meeting minutes pr... |
examples/meeting-minutes-openai-meeting-minutes-python-implementation.python | A Python function demonstrating how to extract summaries, key points, action items, and sentiment from meeting transcriptions using OpenAI. | Exact payloads, commands, or snippets shown in A Python function demonstrating how to extract summaries, key points, action items, and sentiment from meeting transc... |
examples/meeting-minutes-openai-meeting-minutes-python-abstract-summary-extractio.python | A Python function demonstrating how to use the OpenAI Chat Completions API to extract an abstract summary from a meeting transcription. | Exact payloads, commands, or snippets shown in A Python function demonstrating how to use the OpenAI Chat Completions API to extract an abstract summary from a meet... |
examples/meeting-minutes-openai-meeting-minutes-python-key-points-extraction.python | A Python script demonstrating how to use the OpenAI Chat Completions API to extract key points from a meeting transcription. | Exact payloads, commands, or snippets shown in A Python script demonstrating how to use the OpenAI Chat Completions API to extract key points from a meeting transcr... |
examples/meeting-minutes-openai-meeting-minutes-action-item-extraction.python | A Python script demonstrating how to use the OpenAI Chat Completions API to extract action items from meeting transcriptions. | Exact payloads, commands, or snippets shown in A Python script demonstrating how to use the OpenAI Chat Completions API to extract action items from meeting transcr... |
examples/meeting-minutes-openai-meeting-minutes-sentiment-analysis.python | A Python script demonstrating how to use the OpenAI Chat Completions API to perform sentiment analysis on meeting transcriptions. | Exact payloads, commands, or snippets shown in A Python script demonstrating how to use the OpenAI Chat Completions API to perform sentiment analysis on meeting tra... |
examples/meeting-minutes-openai-meeting-minutes-python-docx-save.python | A Python function that uses the python-docx library to format and save meeting minutes into a Word document. | Exact payloads, commands, or snippets shown in A Python function that uses the python-docx library to format and save meeting minutes into a Word document. |
examples/meeting-minutes-openai-meeting-minutes.python | A Python script that transcribes an audio file and uses a meeting minutes function to generate a summary and save it as a DOCX file. | Exact payloads, commands, or snippets shown in A Python script that transcribes an audio file and uses a meeting minutes function to generate a summary and save it... |
What This Skill Covers
- In this tutorial, we'll harness the power of OpenAI's Whisper and GPT-4 models to develop an automated meeting minutes generator. The application transcribes...
- Main sections:
Getting started,Transcribing audio with Whisper,Summarizing and analyzing the transcript with GPT-4,Summary extraction,Key points extraction.
Workflow
- Open the most relevant file under
docs/for the exact documented workflow and wording. - Open
schemas/files for exact structured contracts. - Open
examples/files for concrete requests, commands, snippets, and manifests. - Do not add behavior or configuration that is not present in the attached source files.
Canonical source: https://developers.openai.com/api/docs/tutorials/meeting-minutes.md
