Text Lemmatizer API - Ruby Gem

Lemmatizer is a simple tool for lemmatizing text. It returns the lemmatized text.

Installation

Add this line to your application's Gemfile:

gem 'apiverve_lemmatizer'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install apiverve_lemmatizer

Getting Started

Get your API key at APIVerve

Basic Usage

require 'apiverve_lemmatizer'

# Initialize the client
client = APIVerve::Lemmatizer::Client.new(api_key: "YOUR_API_KEY")

# Make a request
response = client.execute({ text: "The cats ran from door to door" })

# Print the response
puts response

Error Handling

begin
  response = client.execute({ text: "The cats ran from door to door" })
  puts response["data"]
rescue APIVerve::Lemmatizer::ValidationError => e
  puts "Validation error: #{e.errors.join(', ')}"
rescue APIVerve::Lemmatizer::APIError => e
  puts "API error: #{e.message}"
  puts "Status code: #{e.status_code}"
end

Debug Mode

# Enable debug logging
client = APIVerve::Lemmatizer::Client.new(
  api_key: "YOUR_API_KEY",
  debug: true
)

Example Response

{
  "status": "ok",
  "error": null,
  "data": {
    "found": 3,
    "lemmas": {
      "cat": 1,
      "ran": 1,
      "door": 2
    }
  }
}

Documentation

For more information, visit the API Documentation.

Support

License

This gem is available under the MIT License.