Module: Google::Cloud::Language::V1
- Defined in:
- lib/google/cloud/language/v1.rb,
lib/google/cloud/language/v1/credentials.rb,
lib/google/cloud/language/v1/doc/overview.rb,
lib/google/cloud/language/v1/language_service_client.rb,
lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb
Overview
Ruby Client for Google Cloud Natural Language API (Alpha)
Google Cloud Natural Language API: Google Cloud Natural Language API provides natural language understanding technologies to developers. Examples include sentiment analysis, entity recognition, and text annotations.
Quick Start
In order to use this library, you first need to go through the following steps:
- Select or create a Cloud Platform project.
- Enable billing for your project.
- Enable the Google Cloud Natural Language API.
- Setup Authentication.
Installation
$ gem install google-cloud-language
Preview
LanguageServiceClient
require "google/cloud/language"
language_service_client = Google::Cloud::Language.new(version: :v1)
content = "Hello, world!"
type = :PLAIN_TEXT
document = { content: content, type: type }
response = language_service_client.analyze_sentiment(document)
Next Steps
- Read the Google Cloud Natural Language API Product documentation to learn more about the product and see How-to Guides.
- View this repository's main README to see the full list of Cloud APIs that we cover.
Enabling Logging
To enable logging for this library, set the logger for the underlying gRPC library.
The logger that you set may be a Ruby stdlib Logger
as shown below,
or a Google::Cloud::Logging::Logger
that will write logs to Stackdriver Logging. See grpc/logconfig.rb
and the gRPC spec_helper.rb for additional information.
Configuring a Ruby stdlib logger:
require "logger"
module MyLogger
LOGGER = Logger.new $stderr, level: Logger::WARN
def logger
LOGGER
end
end
# Define a gRPC module-level logger method before grpc/logconfig.rb loads.
module GRPC
extend MyLogger
end
Defined Under Namespace
Modules: EncodingType Classes: AnalyzeEntitiesRequest, AnalyzeEntitiesResponse, AnalyzeEntitySentimentRequest, AnalyzeEntitySentimentResponse, AnalyzeSentimentRequest, AnalyzeSentimentResponse, AnalyzeSyntaxRequest, AnalyzeSyntaxResponse, AnnotateTextRequest, AnnotateTextResponse, ClassificationCategory, ClassifyTextRequest, ClassifyTextResponse, Credentials, DependencyEdge, Document, Entity, EntityMention, LanguageServiceClient, PartOfSpeech, Sentence, Sentiment, TextSpan, Token
Class Method Summary collapse
-
.new(credentials: nil, scopes: nil, client_config: nil, timeout: nil, metadata: nil, exception_transformer: nil, lib_name: nil, lib_version: nil) ⇒ Object
Provides text analysis operations such as sentiment analysis and entity recognition.
Class Method Details
.new(credentials: nil, scopes: nil, client_config: nil, timeout: nil, metadata: nil, exception_transformer: nil, lib_name: nil, lib_version: nil) ⇒ Object
Provides text analysis operations such as sentiment analysis and entity recognition.
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/google/cloud/language/v1.rb', line 127 def self.new \ credentials: nil, scopes: nil, client_config: nil, timeout: nil, metadata: nil, exception_transformer: nil, lib_name: nil, lib_version: nil kwargs = { credentials: credentials, scopes: scopes, client_config: client_config, timeout: timeout, metadata: , exception_transformer: exception_transformer, lib_name: lib_name, lib_version: lib_version }.select { |_, v| v != nil } Google::Cloud::Language::V1::LanguageServiceClient.new(**kwargs) end |