google-cloud-language 0.26.1 → 0.26.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/google/cloud/language.rb +0 -5
- data/lib/google/cloud/language/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06d134124260893ad2a2b7f6b11afc4f0fd19531
|
4
|
+
data.tar.gz: df7e8b11222a59c1083434fd56e0b00e4ccf0c14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f569c6cffb327a26302c66455c7e71539bfc4661c2540fd244ae335bf714bc3e5378ba9232987790d2ae7f0b538a982d2d55bd2af5b1e931b2ddfb5a7051fdd0
|
7
|
+
data.tar.gz: cf2e9ab864f8231522494ae7a9f7889a9386d1090fbd31b8358a75d1d0b8bf7ab06342661f72e88383b5f9633fbf11038403eb0083b2abab1eb8605208dce32a
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Google Cloud Natural Language API](https://cloud.google.com/natural-language/) ([docs](https://cloud.google.com/natural-language/docs)) reveals the structure and meaning of text by offering powerful machine learning models in an easy to use REST API. You can use it to extract information about people, places, events and much more, mentioned in text documents, news articles or blog posts. You can use it to understand sentiment about your product on social media or parse intent from customer conversations happening in a call center or a messaging app. You can analyze text uploaded in your request or integrate with your document storage on Google Cloud Storage.
|
4
4
|
|
5
|
-
The
|
5
|
+
The Cloud Natural Language API currently supports English, Spanish, and Japanese for sentiment analysis, entity analysis, and syntax analysis.
|
6
6
|
|
7
7
|
- [google-cloud-language API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud-language/latest)
|
8
8
|
- [google-cloud-language on RubyGems](https://rubygems.org/gems/google-cloud-language)
|
@@ -48,6 +48,12 @@ This library follows [Semantic Versioning](http://semver.org/).
|
|
48
48
|
|
49
49
|
It is currently in major version zero (0.y.z), which means that anything may change at any time and the public API should not be considered stable.
|
50
50
|
|
51
|
+
### Lower-level (GAPIC) API versioning
|
52
|
+
|
53
|
+
The lower-level API support contained within this package is versioned separately to match its corresponding Google Cloud Platform service API version.
|
54
|
+
|
55
|
+
*Please note that in lower-level API support in this package, version `v1beta2` comes after version `v1`. The API version `v1beta2` contains new features that were not released in `v1`.*
|
56
|
+
|
51
57
|
## Contributing
|
52
58
|
|
53
59
|
Contributions to this library are always welcome and highly encouraged.
|
@@ -34,11 +34,6 @@ module Google
|
|
34
34
|
# Extract entities and understand sentiments in multiple languages by
|
35
35
|
# translating text first with Cloud Translation API.
|
36
36
|
#
|
37
|
-
# The Google Cloud Natural Language API is currently a beta release, and
|
38
|
-
# might be changed in backward-incompatible ways. It is not subject to any
|
39
|
-
# SLA or deprecation policy and is not intended for real-time usage in
|
40
|
-
# critical applications.
|
41
|
-
#
|
42
37
|
# For more information about Cloud Natural Language API, read the [Google
|
43
38
|
# Cloud Natural Language API
|
44
39
|
# Documentation](https://cloud.google.com/natural-language/docs/).
|