diff options
author | Naveen Bobbili <nbobbili@amazon.com> | 2019-02-25 17:24:29 -0800 |
---|---|---|
committer | Naveen Bobbili <nbobbili@amazon.com> | 2019-02-25 20:55:05 -0800 |
commit | 9eb3a90df3681586b58146b47eea7f3848c348a0 (patch) | |
tree | 9c507e13c233fb649d04c6a45d152f7ec12185f8 /htdocs/index.html | |
parent | 143363b9e864ea465c927057ce7214f124a984cb (diff) |
Refactored VSHL into vshl-core and vshl-capabilities.
vshl-core: This API is responsible for request arbitration. Verbs exposed are
1. startListening
2. cancelListening
3. subscribe
4. enumerateVoiceAgents
5. setDefaultVoiceAgent Used by applications to subscribe to dialog, connection and auth states of underlying low level voiceagent bindings. Used by applications to trigger voice recognition routine of the underlying low level voiceagent binding.
vshl-capabilities: This API exposes publish and subscribe methods for all the speech framework domains/capabilities. For eg. navigation, phonecontrol etc. This API is used by apps and low level voice agent binding to subscribe and publish these capability messages whenever applicable. The code for this is agl-service-voice-high-capabilities repository.
This specific commit is for vshl-core API.
Change-Id: I1101db19b57ee918482a178843641b088508ac5d
Signed-off-by: Naveen Bobbili <nbobbili@amazon.com>
Diffstat (limited to 'htdocs/index.html')
-rw-r--r-- | htdocs/index.html | 61 |
1 files changed, 7 insertions, 54 deletions
diff --git a/htdocs/index.html b/htdocs/index.html index bf5f840..4e10f66 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -1,22 +1,22 @@ <html> <head> - <title>VSHL API Test</title> + <title>VSHL CORE API Test</title> <link rel="stylesheet" href="binding.css"> <script type="text/javascript" src="AFB.js"></script> <script type="text/javascript" src="amazon.js"></script> <script type="text/javascript" src="binding.js"></script> </head> -<body class="page-content" onload="init()"> +<body class="page-content" onload="connect()"> <h1>Voice Service High Level API Tester</h1> <button id="connected" onclick="init()">Binder WS Fail</button> <button id="monitoring" onclick="window.open('/monitoring/monitor.html','_monitor_ctl')">Debug/Monitoring</a> </button> - <button onclick="clearPre('question'); clearPre('output'); clearPre('outevt');">Clear</button> - + <button onclick="clearPre('question'); clearPre('output'); clearPre('outevt');">Clear</button> <br><br> + VSHL CORE URL: <input type="text" id="vshl-core-address" value="localhost:1111" onchange="connectVshlCore()"> <br><br> <br> <br> @@ -43,60 +43,13 @@ </footer> </dialog> - <dialog id="templateui-event-chooser"> - <h3 class="dialogheader">Subscribe to the following GUI Metadata Messages</h3> - <div> - <ol> - <li> - <input type="checkbox" id="render_template" checked> - <label>render_template</label> - </li> - <li> - <input type="checkbox" id="clear_template" checked> - <label>clear_template</label> - </li> - <li> - <input type="checkbox" id="render_player_info" checked> - <label>render_player_info</label> - </li> - <li> - <input type="checkbox" id="clear_player_info" checked> - <label>clear_player_info</label> - </li> - </ol> - </div> - <footer> - <button id="templateui-subscribe-btn" type="button" style="margin: 10px">Subscribe</button> - </footer> - </dialog> - - <dialog id="login-with-amazon"> - <h3 class="dialogheader">Login with Amazon !!</h3> - <div id="login-area"> - <div> - Alexa VA URL: <input type="text" id="alexa-va-address" value="localhost:1111"> <br><br> - Client ID : <input type="text" id="client-id"> <br><br> - Product ID : <input type="text" id="product-id"> <br><br> - To generate client and product ID, please register a new AVS product for - <i><b>Other devices and platforms</b></i> using instructions in - <a href="https://developer.amazon.com/docs/alexa-voice-service/register-a-product.html" target="_blank">this </a> - link.<br><br> - </div> - <footer id ="login-with-amazon-footer"> - <button id="submit-btn" type="button" style="margin: 10px">Login</button> - <button id="cancel-btn" type="button" style="margin: 10px">Cancel</button> - </footer> - </div> - </dialog> - <div id="top" class="row"> <div id='actions' class="col1"> <div> - <h2>VSHL APIs</h2> - <p>APIs that are voiceagent agnostic</p> - <button onclick="callbinder('vshl','startListening',{});">startListening</button> + <h2>VSHL CORE APIs</h2> + <p>Speech framework's VSHL Core APIs</p> + <button onclick="startListening()">startListening</button> <button onclick="fetchAndRenderVoiceAgents();">enumerateAgents</button> - <button onclick="showTemplateUIEventChooserDialog();">Subscribe to GUI Metadata</button> </div> <div id="agentsDiv"> |