8000 Language v1beta2 Release by vam-google · Pull Request #1878 · googleapis/google-cloud-java · GitHub
[go: up one dir, main page]

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
13 changes: 12 additions & 1 deletion google-cloud-language/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,18 @@
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-language-v1</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<exclusions>
<exclusion>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-language-v1beta2</artifactId>
<version>0.1.6</version>
<exclusions>
<exclusion>
<groupId>io.grpc</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ private final AnalyzeSentimentResponse analyzeSentiment(AnalyzeSentimentRequest

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Finds named entities (currently finds proper names) in the text, entity types, salience,
* mentions for each entity, and other properties.
* Finds named entities (currently proper names and common nouns) in the text along with entity
* types, salience, mentions for each entity, and other properties.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -268,8 +268,8 @@ public final AnalyzeEntitiesResponse analyzeEntities(

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Finds named entities (currently finds proper names) in the text, entity types, salience,
* mentions for each entity, and other properties.
* Finds named entities (currently proper names and common nouns) in the text along with entity
* types, salience, mentions for each entity, and other properties.
*
* <p>Sample code:
*
Expand All @@ -294,8 +294,8 @@ public final AnalyzeEntitiesResponse analyzeEntities(AnalyzeEntitiesRequest requ

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Finds named entities (currently finds proper names) in the text, entity types, salience,
* mentions for each entity, and other properties.
* Finds named entities (currently proper names and common nouns) in the text along with entity
* types, salience, mentions for each entity, and other properties.
*
* <p>Sample code:
*
Ex 44B5 pand Down
Loading
0