@@ -97,7 +97,7 @@ message AssistConfig {
97
97
98
98
// Specifies how to process the `audio_in` data that will be provided in
99
99
// 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).
101
101
message AudioInConfig {
102
102
// Audio encoding of the data sent in the audio message.
103
103
// Audio must be one-channel (mono). The only language supported is "en-US".
@@ -174,8 +174,11 @@ message DialogStateIn {
174
174
// device after it was first setup and/or factory-default-reset.
175
175
bytes conversation_state = 1 ;
176
176
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.
179
182
string language_code = 2 ;
180
183
181
184
// *Optional* Location of the device where the query originated.
@@ -317,6 +320,12 @@ message SpeechRecognitionResult {
317
320
}
318
321
319
322
// *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)
320
329
message DeviceConfig {
321
330
// *Required* Unique identifier for the device. The id length must be 128
322
331
// characters or less. Example: DBCDW098234. This MUST match the device_id
0 commit comments