list_cached
List all cached transcriptions with their titles, durations, dates, and file paths to markdown files. Useful for browsing what has already been transcribed.
Example
Response:
{
"count": 3,
"transcriptions": [
{
"title": "How to Build a Startup",
"duration": 1076.12,
"duration_formatted": "17:56",
"date": "2026-01-31 22:36",
"model_size": "tiny",
"md_path": "/Users/you/.augent/cache/transcriptions/How_to_Build_a_Startup.md",
"file_path": "/Users/you/Downloads/How to Build a Startup.webm"
}
],
"message": "Found 3 cached transcription(s)"
}Notes
Titles are derived from the audio filename. Since
download_audiouses yt-dlp’s%(title)stemplate, downloaded videos are automatically named by their video title.
Each cached transcription also has a markdown file at
~/.augent/cache/transcriptions/that you can browse directly.
Last updated on