rosette_api 1.27.1 → 1.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +22 -14
  4. data/examples/README.md +2 -2
  5. data/examples/address_similarity.rb +7 -6
  6. data/examples/categories.rb +7 -6
  7. data/examples/entities.rb +7 -6
  8. data/examples/events.rb +23 -0
  9. data/examples/info.rb +7 -6
  10. data/examples/language.rb +7 -6
  11. data/examples/language_multilingual.rb +7 -6
  12. data/examples/morphology_complete.rb +7 -6
  13. data/examples/morphology_compound-components.rb +7 -6
  14. data/examples/morphology_han-readings.rb +7 -6
  15. data/examples/morphology_lemmas.rb +7 -6
  16. data/examples/morphology_parts-of-speech.rb +7 -6
  17. data/examples/multipart_language_file.rb +29 -0
  18. data/examples/name_deduplication.rb +7 -6
  19. data/examples/name_similarity.rb +9 -7
  20. data/examples/name_translation.rb +7 -6
  21. data/examples/ping.rb +7 -6
  22. data/examples/record_similarity.rb +114 -0
  23. data/examples/relationships.rb +7 -6
  24. data/examples/semantic_vectors.rb +7 -6
  25. data/examples/sentences.rb +7 -6
  26. data/examples/sentiment.rb +8 -7
  27. data/examples/similar_terms.rb +7 -6
  28. data/examples/syntax_dependencies.rb +7 -6
  29. data/examples/tokens.rb +7 -6
  30. data/examples/topics.rb +7 -6
  31. data/examples/transliteration.rb +7 -6
  32. data/lib/address_parameter.rb +1 -1
  33. data/lib/address_similarity_parameters.rb +11 -3
  34. data/lib/bad_request_error.rb +1 -1
  35. data/lib/bad_request_format_error.rb +1 -1
  36. data/lib/document_parameters.rb +4 -5
  37. data/lib/name_deduplication_parameters.rb +2 -2
  38. data/lib/name_parameter.rb +20 -2
  39. data/lib/name_similarity_parameters.rb +49 -16
  40. data/lib/name_translation_parameters.rb +14 -4
  41. data/lib/record_similarity_parameters.rb +68 -0
  42. data/lib/request_builder.rb +89 -49
  43. data/lib/rosette_api.rb +78 -42
  44. data/lib/rosette_api_error.rb +3 -3
  45. metadata +25 -31
metadata CHANGED
@@ -1,36 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rosette_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.1
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
- - Basis Technology Corp
8
- autorequire:
7
+ - Analytics by Babel Street
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-01-16 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rubysl-securerandom
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '2.0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '2.0'
27
- description: The Rosette Text Analytics Platform uses natural language processing,
28
- statistical modeling, and machine learning to analyze unstructured and semi-structured
29
- text across 364 language-encoding-script combinations, revealing valuable information
30
- and actionable data. Rosette provides endpoints for extracting entities and relationships,
31
- translating and comparing the similarity of names, categorizing and adding linguistic
32
- tags to text and more.
33
- email: support@rosette.com
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Our product is a full text processing pipeline from data preparation
13
+ to extracting the most relevant information andanalysis utilizing precise, focused
14
+ AI that has built-in human understanding. Text Analytics provides foundationallinguistic
15
+ analysis for identifying languages and relating words. The result is enriched and
16
+ normalized text forhigh-speed search and processing without translation.Text Analytics
17
+ extracts events and entities — people, organizations, and places — from unstructured
18
+ text and adds thestructure of associating those entities into events that deliver
19
+ only the necessary information for near real-timedecision making. Accompanying tools
20
+ shorten the process of training AI models to recognize domain-specific events.The
21
+ product delivers a multitude of ways to sharpen and expand search results. Semantic
22
+ similarity expands searchbeyond keywords to words with the same meaning, even in
23
+ other languages. Sentiment analysis and topic extraction helpfilter results to what’s
24
+ relevant.
25
+ email: analyticssupport@babelstreet.com
34
26
  executables: []
35
27
  extensions: []
36
28
  extra_rdoc_files: []
@@ -41,6 +33,7 @@ files:
41
33
  - examples/address_similarity.rb
42
34
  - examples/categories.rb
43
35
  - examples/entities.rb
36
+ - examples/events.rb
44
37
  - examples/info.rb
45
38
  - examples/language.rb
46
39
  - examples/language_multilingual.rb
@@ -49,10 +42,12 @@ files:
49
42
  - examples/morphology_han-readings.rb
50
43
  - examples/morphology_lemmas.rb
51
44
  - examples/morphology_parts-of-speech.rb
45
+ - examples/multipart_language_file.rb
52
46
  - examples/name_deduplication.rb
53
47
  - examples/name_similarity.rb
54
48
  - examples/name_translation.rb
55
49
  - examples/ping.rb
50
+ - examples/record_similarity.rb
56
51
  - examples/relationships.rb
57
52
  - examples/semantic_vectors.rb
58
53
  - examples/sentences.rb
@@ -71,15 +66,15 @@ files:
71
66
  - lib/name_parameter.rb
72
67
  - lib/name_similarity_parameters.rb
73
68
  - lib/name_translation_parameters.rb
69
+ - lib/record_similarity_parameters.rb
74
70
  - lib/request_builder.rb
75
71
  - lib/rosette_api.rb
76
72
  - lib/rosette_api_error.rb
77
- homepage: https://developer.rosette.com/
73
+ homepage: https://developer.babelstreet.com/
78
74
  licenses:
79
75
  - Apache-2.0
80
76
  metadata:
81
77
  rubygems_mfa_required: 'true'
82
- post_install_message:
83
78
  rdoc_options: []
84
79
  require_paths:
85
80
  - lib
@@ -94,8 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
89
  - !ruby/object:Gem::Version
95
90
  version: '0'
96
91
  requirements: []
97
- rubygems_version: 3.5.3
98
- signing_key:
92
+ rubygems_version: 4.0.6
99
93
  specification_version: 4
100
- summary: A Ruby interface for Rosette Text Analytics Platform.
94
+ summary: A Ruby interface for Babel Street Analytics Server and Hosted Services
101
95
  test_files: []