Skip to content

Commit 91e2de5

Browse files
author
Adam Soos
committed
ws-3314: examples branding updates
1 parent c685190 commit 91e2de5

27 files changed

Lines changed: 29 additions & 29 deletions

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
## Endpoint Examples
2-
These examples are scripts that can be run independently to demonstrate the Rosette API functionality.
2+
These examples are scripts that can be run independently to demonstrate the Babel Street Analytics API functionality.
33

4-
Each example file demonstrates one of the capabilities of the Rosette Platform. Each example, when run, prints its output to the console.
4+
Each example file demonstrates one of the capabilities of the Analytics Platform. Each example, when run, prints its output to the console.
55

66
Here are some methods for running the examples. Each example will also accept an optional `--url=` parameter for
77
overriding the default URL.
88

99
Also, the examples are dual purpose in that they're used to test both source and packagist. The instructions include steps to address this depending on what you are testing.
1010

11-
A note on prerequisites. Rosette API only supports TLS 1.2 so ensure your toolchain also supports it.
11+
A note on prerequisites. Analytics API only supports TLS 1.2 so ensure your toolchain also supports it.
1212

1313
#### Docker/Latest Version From Packagist
1414

examples/address_similarity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get similarity score for two addresses.
4+
* Example code to call Analytics API to get similarity score for two addresses.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/categories.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get a document's (located at given URL) category.
4+
* Example code to call Analytics API to get a document's (located at given URL) category.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/entities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get entities from a piece of text.
4+
* Example code to call Analytics API to get entities from a piece of text.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/events.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get events from a piece of text.
4+
* Example code to call Analytics API to get events from a piece of text.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get information such as version and build.
4+
* Example code to call Analytics API to get information such as version and build.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/language.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to detect possible languages for a piece of text.
4+
* Example code to call Analytics API to detect possible languages for a piece of text.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/language_multilingual.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to detect possible languages for a piece of text.
4+
* Example code to call Analytics API to detect possible languages for a piece of text.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

examples/morphology_complete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get the complete set of morphological analysis
4+
* Example code to call Analytics API to get the complete set of morphological analysis
55
* results for a piece of text.
66
**/
77
require_once dirname(__FILE__) . '/../vendor/autoload.php';

examples/morphology_compound-components.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Example code to call Rosette API to get de-compounded words from a piece of text.
4+
* Example code to call Analytics API to get de-compounded words from a piece of text.
55
**/
66
require_once dirname(__FILE__) . '/../vendor/autoload.php';
77
use rosette\api\Api;

0 commit comments

Comments
 (0)