GithubHelp home page GithubHelp logo

Comments (6)

omenocal avatar omenocal commented on August 10, 2024 2

I like the idea of the onRequest method, like:

voxaApp.onRequest('PlaybackController.NextCommandIssued', (voxaEvent) => {
// CODE
});

Though we should think more about the way to return the object, as most of them are not part of the state machine cycle

from voxa.

armonge avatar armonge commented on August 10, 2024

I don't like it, that would include state machine concepts (States) in request types that in reality are not part of the state machine execution, we never transition between states in AudioPlayer events or similar, in fact we couldn't even if we wanted cause those request types are out of session. If CanFulFillIntentRequest can be executed with onState then that seems like an error to me

from voxa.

armonge avatar armonge commented on August 10, 2024

But i do like the idea of having something like "onRequest" which just handles whatever request type we throw at it

from voxa.

wuelcas avatar wuelcas commented on August 10, 2024

Is the state machine concept strictly bound to being in a session?

I recently worked on a skill using the audio player, and I wanted to handle the PlaybackController request when a user resume the audio using the touch screen controls on a echo show/spot. I couldn't reuse the code I user for the ResumeIntent and had to duplicate code and I needed the build the AudioPlayer directive manually because the AudioPlayer class attach the directive to the reply when we return it in a state. I would be great to be able to reuse code in other states when having a request type, handling the request either with onState or onRequest, whichever we decide.

from voxa.

rmberrios avatar rmberrios commented on August 10, 2024

I think is more related to the way voxa handles a state machine intent request. it could be troublesome to manage those intents that don't return a speech or session attributes. At least we agreed on something we should have a handler perhaps named onRequest. Could we come up with another way to reuse code out of another state?.

from voxa.

armonge avatar armonge commented on August 10, 2024

you could do something like

function genericHandler(event, reply) {
// do something
}

app.onAudioPlayerSomething(genericHandler)
app.onAudioPlayerSomethingElse(genericHandler)

I do think it's a great point that the directives should work on this handlers, at least the ones that make sense

from voxa.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.