Conversation
Covers the stored-agent path of AssemblyAI's Voice Agent API, where tools carry a URL and AssemblyAI makes the HTTP request itself, rather than the inline function-tool path that needs a client-side dispatcher held open for the whole call. Walks through agent.json as the unit of deployment, a FastAPI booking service whose responses are written to be spoken, and three findings from building it: tool-schema rejection is opaque to the agent and silently turns a correct E.164 rule into a lost booking; an empty slot list conflates closed-for-the-weekend with fully-booked; and logging tool calls from FastAPI middleware needs content-length dropped from the copied headers. Reference implementation: vicdevman/assemblyai-voice-agent-scheduler, with every code block linked to a pinned commit. Images are not live yet - the three <Img> tags and the cover point at Cloudflare custom IDs whose uploads are blocked on a deactivated account.
…AssemblyAI tutorial Rewrites the introduction to open on what the Voice Agent API actually offers and where the gap in coverage is, following the shape used in the Alpaca and MindsDB tutorials, instead of leading with an abstract claim about architecture. Points the three Img tags at the uploaded screenshots on lablab-static-eu: the full demo page mid-call, the tool-call feed showing the BAD PHONE recovery, and the Demo data panel.
…m/vicdevman/community-content into assemblyai-voice-agent-http-tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Covers the stored-agent path of AssemblyAI's Voice Agent API, where tools carry a URL and AssemblyAI makes the HTTP request itself, rather than the inline function-tool path that needs a client-side dispatcher held open for the whole call.
Walks through agent.json as the unit of deployment, a FastAPI booking service whose responses are written to be spoken, and three findings from building it: tool-schema rejection is opaque to the agent and silently turns a correct E.164 rule into a lost booking; an empty slot list conflates closed-for-the-weekend with fully-booked; and logging tool calls from FastAPI middleware needs content-length dropped from the copied headers.
Reference implementation: vicdevman/assemblyai-voice-agent-scheduler, with every code block linked to a pinned commit.
Images are not live yet - the three
tags and the cover point at Cloudflare custom IDs whose uploads are blocked on a deactivated account.