You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current RPM hook a delta is created with propulsion.engine1.revolutions hardcoded as the path. This is an issue, there are more than one engines. We need a way to indicate, to the hook, what source the data is coming from and how that should affect the resulting delta.
One way is to use context, and to allow the parser to be instantiated with a different context both at the global level (e.g. new Parser({ context: '...' }) and at the individual sentence-level (e.g. parser.parse(sentence, '<context>')).
The text was updated successfully, but these errors were encountered:
In the current SK spec, multiple engines reporting RPM are recorded like this:
propulsion.engine1.revolutions
propulsion.engine2.revolutions
propulsion.engine3.revolutions
etc
In the current RPM hook a delta is created with
propulsion.engine1.revolutions
hardcoded as the path. This is an issue, there are more than one engines. We need a way to indicate, to the hook, what source the data is coming from and how that should affect the resulting delta.One way is to use
context
, and to allow the parser to be instantiated with a different context both at the global level (e.g.new Parser({ context: '...' })
and at the individual sentence-level (e.g.parser.parse(sentence, '<context>')
).The text was updated successfully, but these errors were encountered: