Skip to main content

speechly.slu.v1.SLU

Service that implements Speechly SLU (Spoken Language Understanding) API.

To use this service you MUST use an access token from Speechly Identity API. The token MUST be passed in gRPC metadata with Authorization key and Bearer ACCESS_TOKEN as value, e.g. in Go:

ctx := context.Background()
ctx = metadata.AppendToOutgoingContext(ctx, "Authorization", "Bearer "+accessToken)
stream, err := speechlySLUClient.Stream(ctx)

Methods

namerequestresponsedescription
StreamSLURequest streamSLUResponse streamPerforms bidirectional streaming speech recognition: receive results while sending audio.

First request MUST be an SLUConfig message with the configuration that describes the audio format being sent.

This RPC can handle multiple logical audio segments with the use of SLUEvent_START and SLUEvent_STOP messages,
which are used to indicate the beginning and the end of a segment.

A typical call timeline will look like this:

1. Client starts the RPC.
2. Client sends SLUConfig message with audio configuration.
3. Client sends SLUEvent.START.
4. Client sends audio and receives responses from the server.
5. Client sends SLUEvent.STOP.
6. Client sends SLUEvent.START.
7. Client sends audio and receives responses from the server.
8. Client sends SLUEvent.STOP.
9. Client closes the stream and receives responses from the server until EOF is received.

NB: the client does not have to wait until the server acknowledges the start / stop events,
this is done asynchronously. The client can deduplicate responses based on the audio context ID,
which will be present in every response message.

Messages

RoundTripMeasurementRequest

Network latency measurement request. Sent from the server to measure the time it takes for the client to receive a message and the server to receive the client's response. Also known as RTT.

Fields

nametypedescription
idint32Measurement id. Multiple measurements can be sent during one connection, so the response should contain
the same id as in the request.

RoundTripMeasurementResponse

Response sent from the client immediately after seeing the RoundTripMeasurementRequest.

Fields

nametypedescription
idint32id should match the request's id.

SLUConfig

Describes the configuration of the audio sent by the client. Currently the API only supports single-channel Linear PCM with sample rate of 16 kHz.

Fields

nametypedescription
encodingEncodingThe encoding of the audio data sent in the stream.
Required.
channelsint32The number of channels in the input audio data.
Required.
sample_rate_hertzint32Sample rate in Hertz of the audio data sent in the stream.
Required.
language_codestringThe language of the audio sent in the stream as a BCP-47 language tag (e.g. "en-US").
Defaults to the target application language.
optionsOptionSpecial options to change the default behaviour of the SLU for all logical audio segment.

SLUConfig.Option

Option to change the default behaviour of the SLU.

Fields

nametypedescription
keystringThe key of the option to be set.
valuestringThe values to set the option to.

SLUEntity

Describes an SLU entity.

An entity is a specific object in the phrase that falls into some kind of category, e.g. in a SAL example *book book a [burger restaurant](restaurant_type) for [tomorrow](date) "burger restaurant" would be an entity of type restaurant_type, and "tomorrow" would be an entity of type date.

An entity has a start and end indices which map to the indices of words in SLUTranscript messages, e.g. in the example *book book a [burger restaurant](restaurant_type) for [tomorrow](date) it would be:

  • Entity "burger restaurant" - start_position = 2, end_position = 3
  • Entity "tomorrow" - start_position = 5, end_position = 5

The start index is inclusive, but the end index is exclusive, i.e. the interval is [start_position, end_position).

Fields

nametypedescription
entitystringThe type of the entity, e.g. restaurant_type or date.
valuestringThe value of the entity, e.g. burger restaurant or tomorrow.
start_positionint32The starting index of the entity in the phrase, maps to the index field in SLUTranscript.
Inclusive.
end_positionint32The finishing index of the entity in the phrase, maps to the index field in SLUTranscript.
Exclusive.

SLUError

Describes the error that happened when processing an audio context. DEPRECATED: Will not be returned. Any errors are returned as gRCP status codes with detail messages.

Fields

nametypedescription
codestringError code (refer to documentation for specific codes).
messagestringError message.

SLUEvent

Indicates the beginning and the end of a logical audio segment (audio context in Speechly terms).

Fields

nametypedescription
eventEventThe event type being sent. Required.
app_idstringThe appId for the utterance.
Required in the START event if the authorization token is project based. The
given application must be part of the project set in the token.
Not required if the authorization token is application based.

SLUFinished

Indicates that the API has stopped processing current audio context. It guarantees that no new messages for that context will be sent by the server.

Fields

nametypedescription
errorSLUErrorDEPRECATED
An error which has happened when processing the context, if any.

SLUIntent

Describes an SLU intent. There can be only one intent per SLU segment.

Fields

nametypedescription
intentstringThe value of the intent, as defined in SAL.

SLURequest

Top-level message sent by the client for the Stream method.

Fields

nametypedescription
configSLUConfigDescribes the configuration of the audio sent by the client.
MUST be the first message sent to the stream.
eventSLUEventIndicates the beginning and the end of a logical audio segment (audio context in Speechly terms).
A context MUST be preceded by a start event and concluded with a stop event,
otherwise the server WILL terminate the stream with an error.
DEPRECATED in favour of SLUStart and SLUStop
audiobytesContains a chunk of the audio being streamed.
rtt_responseRoundTripMeasurementResponseResponse to an RTT measurement request from server. Should be sent immediately
after receiving the RoundTripMeasurementRequest in the stream.
If ignored, no round trip measurements are made.
startSLUStartIndicates the beginning of a logical audio segment (audio context in Speechly terms).
A context MUST be preceded by a SLUStart, (or the deprecated SLUEvent start event)
otherwise the server WILL terminate the stream with an error.
stopSLUStopIndicates the end of a logical audio segment (audio context in Speechly terms).
A context MUST be concluded with a SLUStop, (or the deprecated SLUEvent stop event)
otherwise the server WILL terminate the stream with an error.

SLUResponse

Top-level message sent by the server for the Stream method.

Fields

nametypedescription
audio_contextstringThe ID of the audio context that this response belongs to.
segment_idint32The ID of the SLU segment that this response belongs to.
This will be 0 for SLUStarted and SLUFinished responses.
transcriptSLUTranscriptFinal SLU transcript.
entitySLUEntityFinal SLU entity.
intentSLUIntentFinal SLU intent.
segment_endSLUSegmentEndA special marker message that indicates that the segment with specified segment_id
has been finalised and no new responses belonging to that segment will be sent.
The client is expected to discard any tentative responses in this segment.
tentative_transcriptSLUTentativeTranscriptTentative SLU transcript.
tentative_entitiesSLUTentativeEntitiesTentative SLU entities.
tentative_intentSLUIntentTentative SLU intent.
startedSLUStartedA special marker message that indicates that the audio context with specified audio_context id
has been started by the API and all audio data sent by the client will be processed in that context.
This message is an asynchronous acknowledgement for client-side SLUEvent_START message.
finishedSLUFinishedA special marker message that indicates that the audio context with specified audio_context id
has been stopped by the API and no new responses for that context will be sent.
The client is expected to discard any non-finalised segments.
This message is an asynchronous acknowledgement for client-side SLUEvent_STOP message.
rtt_requestRoundTripMeasurementRequestInitiates a round trip network latency measurement. The response handler should respond to this
message by sending a RoundTripMeasurementResponse in the request stream.
The measurement is stored server side and used to minimise the latency in the future.

SLUSegmentEnd

Indicates the end of the segment. Upon receiving this, the segment should be finalised and all future messages for that segment (if any) discarded.

Fields

nametypedescription

SLUStart

Indicates the beginning and the end of a logical audio segment (audio context in Speechly terms).

Fields

nametypedescription
app_idstringThe appId for the utterance.
Required if the authorization token is project based. The
given application must be part of the project set in the token.
Not required if the authorization token is application based.
optionsOptionSpecial options to change the default behaviour of the SLU for this audio segment.

SLUStart.Option

Option to change the default behaviour of the SLU.

Fields

nametypedescription
keystringThe key of the option to be set.
valuestringThe values to set the option to.

SLUStarted

Indicates that the API has started processing the portion of audio as new audio context. This does not guarantee that the server will not send any more messages for the previous audio context.

Fields

nametypedescription

SLUStop

Indicates the end of a logical audio segment (audio context in Speechly terms).

Fields

nametypedescription

SLUTentativeEntities

Describes tentative entities.

Fields

nametypedescription
tentative_entitiesSLUEntityA list of entities, which must be treated as tentative.

This is not an aggregate of all entities in the audio,
but rather it ONLY contains entities that have not been finalised yet.

e.g. if at the start there are two tentatively recognised entities - ["burger restaurant", "tomorrow"]
but then the API marks "burger restaurant" as final and recognises a new tentative entity "for two",
this will contain ["tomorrow", "for two"].

SLUTentativeTranscript

Describes a tentative transcript.

Tentative transcript is an interim recognition result, which may change over time, e.g. a phrase "find me a red t-shirt" can be tentatively recognised as "find me a tea", until the API processes the audio completely.

Fields

nametypedescription
tentative_transcriptstringAggregated tentative transcript from the beginning of the audio until current moment in time.
Consecutive transcripts will have this value appended to,
e.g. if in the first message it's "find me", in the next it may be "find me a t-shirt".
tentative_wordsSLUTranscriptA list of individual words which compose tentative_transcript.
All words must be considered tentative.

SLUTranscript

Describes an SLU transcript. A transcript is a speech-to-text element of the phrase, i.e. a word recognised from the audio.

Fields

nametypedescription
wordstringThe word recongised from the audio.
indexint32The position of the word in the whole phrase, zero-based.
start_timeint32The start time of the word in the audio, in milliseconds from the beginning of the audio.
end_timeint32The end time of the word in the audio, in milliseconds from the beginning of the audio.

Enums

SLUConfig.Encoding

The encoding of the audio data sent in the stream.

Values

namevaluedescription
LINEAR160Uncompressed 16-bit signed little-endian samples (Linear PCM).

SLUEvent.Event

The event type value.

Values

namevaluedescription
START0START indicates the beginning of the audio context. Must be sent before sending audio data.
STOP1STOP indicates the end of the audio context. Must be sent after sending last chunk of audio in that segment.