Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [dialogflow] added dialogflow_assist_answer #9565

Merged
merged 8 commits into from
Jun 22, 2023
2 changes: 1 addition & 1 deletion java-dialogflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.16.0</version>
<version>26.17.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ public EnvironmentsStub getStub() {
* }</pre>
*
* @param parent Required. The agent to list all environments from. Format: -
* `projects/&lt;Project Number / ID&gt;/agent` - `projects/&lt;Project Number /
* ID&gt;/locations/&lt;Location ID&gt;/agent`
* `projects/&lt;Project ID&gt;/agent` - `projects/&lt;Project ID&gt;/locations/&lt;Location
* ID&gt;/agent`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListEnvironmentsPagedResponse listEnvironments(AgentName parent) {
Expand Down Expand Up @@ -235,8 +235,8 @@ public final ListEnvironmentsPagedResponse listEnvironments(AgentName parent) {
* }</pre>
*
* @param parent Required. The agent to list all environments from. Format: -
* `projects/&lt;Project Number / ID&gt;/agent` - `projects/&lt;Project Number /
* ID&gt;/locations/&lt;Location ID&gt;/agent`
* `projects/&lt;Project ID&gt;/agent` - `projects/&lt;Project ID&gt;/locations/&lt;Location
* ID&gt;/agent`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListEnvironmentsPagedResponse listEnvironments(String parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ public com.google.cloud.dialogflow.v2.AgentAssistantFeedback getAgentAssistantDe
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down Expand Up @@ -1369,8 +1369,8 @@ public Builder clearAgentAssistantDetailFeedback() {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand All @@ -1387,8 +1387,8 @@ public boolean getClicked() {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand All @@ -1409,8 +1409,8 @@ public Builder setClicked(boolean value) {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ public interface AnswerFeedbackOrBuilder
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down