List implementation recipes
list_recipesList curated end-to-end implementation recipes for common ProsodyAI integration tasks, including adding prosody to LiveKit agents, streaming from browsers, wiring LangChain tools, and defining KPIs.
Instructions
List curated end-to-end implementation recipes for common ProsodyAI integration tasks (e.g. add prosody to a LiveKit agent, stream from a browser, wire the LangChain tool, define KPIs).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/lib/content.ts:145-148 (helper)Helper function listEntries that filters loaded content by section (used with 'recipes' section).
export async function listEntries(section?: ContentSection): Promise<ContentEntry[]> { const all = await loadContent(); return section ? all.filter((e) => e.section === section) : all; } - src/lib/content.ts:97-101 (helper)Helper function makeId used by loadContent to create stable IDs for content entries.
function makeId(relPath: string): string { // strip extension; normalise slashes return relPath.replace(/\\/g, "/").replace(/\.(md|mdx|json|yaml|yml)$/i, ""); }