Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions java-dialogflow-cx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,26 @@ Java idiomatic client for [Dialogflow CX][product-docs].

If you are using Maven, add this to your pom.xml file:

<!-- {x-version-update-start:google-cloud-dialogflow-cx:released} -->

```xml
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-dialogflow-cx</artifactId>
<version>0.22.0</version>
<version>0.23.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-dialogflow-cx:0.22.0'
implementation 'com.google.cloud:google-cloud-dialogflow-cx:0.23.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-dialogflow-cx" % "0.22.0"
libraryDependencies += "com.google.cloud" % "google-cloud-dialogflow-cx" % "0.23.0"
```
<!-- {x-version-update-end} -->

## Authentication

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public com.google.cloud.dialogflow.cx.v3beta1.InputAudioConfigOrBuilder getConfi
*
* <pre>
* The natural language speech audio to be processed.
* A single request can contain up to 1 minute of speech audio data.
* A single request can contain up to 2 minutes of speech audio data.
* The [transcribed
* text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
* contain more than 256 bytes.
Expand Down Expand Up @@ -729,7 +729,7 @@ public com.google.cloud.dialogflow.cx.v3beta1.InputAudioConfigOrBuilder getConfi
*
* <pre>
* The natural language speech audio to be processed.
* A single request can contain up to 1 minute of speech audio data.
* A single request can contain up to 2 minutes of speech audio data.
* The [transcribed
* text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
* contain more than 256 bytes.
Expand All @@ -752,7 +752,7 @@ public com.google.protobuf.ByteString getAudio() {
*
* <pre>
* The natural language speech audio to be processed.
* A single request can contain up to 1 minute of speech audio data.
* A single request can contain up to 2 minutes of speech audio data.
* The [transcribed
* text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
* contain more than 256 bytes.
Expand Down Expand Up @@ -781,7 +781,7 @@ public Builder setAudio(com.google.protobuf.ByteString value) {
*
* <pre>
* The natural language speech audio to be processed.
* A single request can contain up to 1 minute of speech audio data.
* A single request can contain up to 2 minutes of speech audio data.
* The [transcribed
* text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
* contain more than 256 bytes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public interface AudioInputOrBuilder
*
* <pre>
* The natural language speech audio to be processed.
* A single request can contain up to 1 minute of speech audio data.
* A single request can contain up to 2 minutes of speech audio data.
* The [transcribed
* text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
* contain more than 256 bytes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
*
* <pre>
* Represents an deployment in an environment. A deployment happens when a flow
* Represents a deployment in an environment. A deployment happens when a flow
* version configured to be active in the environment. You can configure running
* pre-deployment steps, e.g. running validation test cases, experiment
* auto-rollout, etc.
Expand Down Expand Up @@ -1823,7 +1823,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
*
*
* <pre>
* Represents an deployment in an environment. A deployment happens when a flow
* Represents a deployment in an environment. A deployment happens when a flow
* version configured to be active in the environment. You can configure running
* pre-deployment steps, e.g. running validation test cases, experiment
* auto-rollout, etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ service Deployments {
}
}

// Represents an deployment in an environment. A deployment happens when a flow
// Represents a deployment in an environment. A deployment happens when a flow
// version configured to be active in the environment. You can configure running
// pre-deployment steps, e.g. running validation test cases, experiment
// auto-rollout, etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ message AudioInput {
InputAudioConfig config = 1 [(google.api.field_behavior) = REQUIRED];

// The natural language speech audio to be processed.
// A single request can contain up to 1 minute of speech audio data.
// A single request can contain up to 2 minutes of speech audio data.
// The [transcribed
// text][google.cloud.dialogflow.cx.v3beta1.QueryResult.transcript] cannot
// contain more than 256 bytes.
Expand Down