@@ -97,7 +97,7 @@ message AssistConfig {
9797
9898// Specifies how to process the `audio_in` data that will be provided in
9999// subsequent requests. For recommended settings, see the Google Assistant SDK
100- // [best practices](https://developers.google.com/assistant/sdk/develop/grpc /best-practices/audio).
100+ // [best practices](https://developers.google.com/assistant/sdk/guides/service/python /best-practices/audio).
101101message AudioInConfig {
102102 // Audio encoding of the data sent in the audio message.
103103 // Audio must be one-channel (mono). The only language supported is "en-US".
@@ -174,8 +174,11 @@ message DialogStateIn {
174174 // device after it was first setup and/or factory-default-reset.
175175 bytes conversation_state = 1 ;
176176
177- // *Required* Language of the request in IETF BCP 47 syntax
178- // (https://tools.ietf.org/html/bcp47). For example: "en-US".
177+ // *Required* Language of the request in
178+ // [IETF BCP 47 syntax](https://tools.ietf.org/html/bcp47). For example:
179+ // "en-US". If you have selected a language for this `device_id` using the
180+ // Settings menu in your phone's Google Assistant app, that selection will
181+ // override this value.
179182 string language_code = 2 ;
180183
181184 // *Optional* Location of the device where the query originated.
@@ -317,6 +320,12 @@ message SpeechRecognitionResult {
317320}
318321
319322// *Required* Fields that identify the device to the Assistant.
323+ //
324+ // See also:
325+ //
326+ // * [Register a Device - REST API](https://developers.google.com/assistant/sdk/reference/device-registration/register-device-manual)
327+ // * [Device Model and Instance Schemas](https://developers.google.com/assistant/sdk/reference/device-registration/model-and-instance-schemas)
328+ // * [Device Proto](https://developers.google.com/assistant/sdk/reference/rpc/google.assistant.devices.v1alpha2#device)
320329message DeviceConfig {
321330 // *Required* Unique identifier for the device. The id length must be 128
322331 // characters or less. Example: DBCDW098234. This MUST match the device_id
0 commit comments