Support prompt voice telephony bindings - #9804
Draft
JianW (v1212) wants to merge 4 commits into
Draft
Conversation
|
Azure Pipelines: Successfully started running 1 pipeline(s). 22 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
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.
Summary
azure.yamlsupport for Foundry-side telephony bindings on prompt voice agents.azd ai agent init,azd provision,azd deploy, andazd down; no new command is introduced.kind: prompt-voice; other agent types rejecttelephonyconfiguration.What changes for users
Users can optionally add phone-number bindings to an existing prompt voice agent service:
Then they continue to use the normal lifecycle:
Scope
agent_versionand arbitraryprovider_configare intentionally not exposed because the current service contract does not support version-pinned bindings and unknown provider config fields are ignored.Validation
providermust beacsortwilio.identifierandconnectionare required.28:orgid:<guid>for TPE or4:+<E.164>for ACS-purchased numbers.+<E.164>.telephonyon non-prompt-voiceservices is rejected unless an explicitAGENT_DEFINITION_PATHoverride is routing the deploy to a different agent definition.Implementation
azure.yamlround-trip support.How to test
telephony-acsortelephony-twilio).telephony.bindings[]to the prompt voice service inazure.yaml.azd deploy <voice-service>.Validation run
go test ./... -count=1go build ./...cspell lint 'extensions/**/*.go' 'extensions/**/*.md' --config ./.vscode/cspell.yaml --no-progressFixes #9803