Skip to content

Commit 0db6564

Browse files
authored
feat: updated links to LandingLens documentation (#31)
The links to the LandingLens docs still pointed to support.landing.ai. Updated these to point to https://landinglens.docs.landing.ai/. See https://app.asana.com/1/504311096896991/project/1203963067800274/task/1213411714740378?focus=true
1 parent e115168 commit 0db6564

8 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414

1515
steps:
1616
- name: "Checkout"
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

21-
- name: "Use NodeJS 16"
22-
uses: actions/setup-node@v2
21+
- name: "Use NodeJS 18"
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: '16'
24+
node-version: '18'
2525
cache: 'yarn'
2626

2727
- name: "Install dependencies"

.github/workflows/lerna-publish-github-packages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212

1313
steps:
1414
- name: "Checkout"
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818
token: ${{ secrets.GH_PAT }}
1919

20-
- name: "Use NodeJS 16"
21-
uses: actions/setup-node@v2
20+
- name: "Use NodeJS 18"
21+
uses: actions/setup-node@v4
2222
with:
23-
node-version: '16'
23+
node-version: '18'
2424
cache: 'yarn'
2525

2626
- name: "NPM Identity"

.github/workflows/tsc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414

1515
steps:
1616
- name: "Checkout"
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

21-
- name: "Use NodeJS 16"
22-
uses: actions/setup-node@v2
21+
- name: "Use NodeJS 18"
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: '16'
24+
node-version: '18'
2525
cache: 'yarn'
2626

2727
- name: "Install dependencies"

.github/workflows/typedoc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.GH_PAT }}
2020

21-
- name: "Use NodeJS 16"
22-
uses: actions/setup-node@v2
21+
- name: "Use NodeJS 18"
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: '16'
24+
node-version: '18'
2525
cache: 'yarn'
2626

2727
- name: "Install dependencies"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ yarn add landingai landingai-react
2828
This library needs to communicate with the LandingLens platform to perform certain functions. (For example, the `getInferenceResult` API calls the HTTP endpoint of your deployed model). To enable communication with LandingLens, you will need the following information:
2929

3030
- The **Endpoint ID** of your deployed model in LandingLens. You can find this on the Deploy page in LandingLens.
31-
- The **API Key** for the LandingLens organization that has the model you want to deploy. To learn how to generate these credentials, go [here](https://support.landing.ai/docs/api-key-and-api-secret).
31+
- The **API Key** for the LandingLens organization that has the model you want to deploy. To learn how to generate these credentials, go [here](https://landinglens.docs.landing.ai/api-key).
3232

3333
### Collect Images and Run Inference
3434
Collect images and run inference using the endpoint you created in LandingLens:

packages/core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ const annotations = predictionsToAnnotations(backbonepredictions);
3030

3131
**References**
3232

33-
* [How to get an endpoint](https://support.landing.ai/docs/cloud-deployment)
34-
* [How to get an API Key](https://support.landing.ai/docs/api-key)
33+
* [How to get an endpoint](https://landinglens.docs.landing.ai/cloud-deployment)
34+
* [How to get an API Key](https://landinglens.docs.landing.ai/api-key)

packages/core/lib/types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
*/
44
export interface ApiInfo {
55
/**
6-
* Landing AI API key of a particular LandingLens user. See https://support.landing.ai/docs/api-key-and-api-secret
6+
* Landing AI API key of a particular LandingLens user. See https://landinglens.docs.landing.ai/api-key
77
*/
88
key: string;
99
/**
10-
* Landing AI API secret of a particular LandingLens user. See https://support.landing.ai/docs/api-key-and-api-secret
10+
* Landing AI API secret of a particular LandingLens user. See https://landinglens.docs.landing.ai/api-key
1111
*
1212
* If your API key is prefixed with `land_sk_`, the secret is not required
1313
*/
1414
secret?: string;
1515
/**
16-
* The cloud deployment endpoint. See https://support.landing.ai/docs/cloud-deployment
16+
* The cloud deployment endpoint. See https://landinglens.docs.landing.ai/cloud-deployment
1717
*/
1818
endpoint: string;
1919
}
@@ -53,7 +53,7 @@ export type BasePrediction = {
5353
labelName: string;
5454
/**
5555
* The predicted label index. A label index is an unique integer identifies a label in your label book.
56-
* See https://support.landing.ai/docs/manage-label-book for more details.
56+
* See https://landinglens.docs.landing.ai/manage-label-book for more details.
5757
*/
5858
labelIndex: number;
5959
};

packages/react/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export default function App() {
2929

3030
**References**
3131

32-
* [How to get an endpoint](https://support.landing.ai/docs/cloud-deployment)
33-
* [How to get api key and secret](https://support.landing.ai/docs/api-key-and-api-secret)
32+
* [How to get an endpoint](https://landinglens.docs.landing.ai/cloud-deployment)
33+
* [How to get api key and secret](https://landinglens.docs.landing.ai/api-key)
3434

3535

3636
## Examples

0 commit comments

Comments
 (0)