VoiceXML
1 program
Added 2026-02-25T14:03:49Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: VXML, Voice Extensible Markup Language
Provenance: commit c0e3135a5b · authored 2026-02-25T15:05:36+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Travel Booking Dialog
Provenance: commit c0e3135a5b · authored 2026-02-25T15:05:36+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml">
<form id="travel">
<field name="destination">
<prompt>
Welcome to the travel booking service.
Please say your destination city.
</prompt>
<grammar type="application/srgs+xml" src="cities.grxml"/>
<noinput>
<prompt>I did not hear you. Please say a city name.</prompt>
<reprompt/>
</noinput>
<nomatch>
<prompt>I did not recognize that city. Please try again.</prompt>
<reprompt/>
</nomatch>
</field>
<field name="departure" type="date">
<prompt>
What is your departure date?
Please say month, day, and year.
</prompt>
</field>
<field name="confirm" type="boolean">
<prompt>
You said <value expr="destination"/> on <value expr="departure"/>.
Is that correct?
</prompt>
<filled>
<if cond="confirm">
<prompt>Your booking request has been submitted. Goodbye.</prompt>
<exit/>
<else/>
<clear namelist="destination departure confirm"/>
<prompt>Let us start over.</prompt>
</if>
</filled>
</field>
</form>
</vxml>