Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/_publish-code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#
# Publish releases to NPM
#
name: Publish Code

on:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/_publish-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#
# Publish Documentation to GitHub pages.
#
name: Publish Documentation

on:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/_static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#
# Run static code analysis.
#
name: Static Analysis

on:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/_test-integrations.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#
# Run integration tests.
#
name: Integration Test

on:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/_test-units.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#
# Run unit tests.
#
name: Test

on:
Expand Down
2 changes: 1 addition & 1 deletion docs/code_samples/v2_classification.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as mindee from "mindee";

const apiKey = "MY_API_KEY";
const filePath = "/path/to/the/file.ext";
const modelId = "MY_CLASSIFICATION_MODEL_ID";
const modelId = "MY_MODEL_ID";

// Init a new client
const mindeeClient = new mindee.Client(
Expand Down
2 changes: 1 addition & 1 deletion docs/code_samples/v2_crop.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as mindee from "mindee";

const apiKey = "MY_API_KEY";
const filePath = "/path/to/the/file.ext";
const modelId = "MY_CROP_MODEL_ID";
const modelId = "MY_MODEL_ID";

// Init a new client
const mindeeClient = new mindee.Client(
Expand Down
2 changes: 1 addition & 1 deletion docs/code_samples/v2_ocr.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as mindee from "mindee";

const apiKey = "MY_API_KEY";
const filePath = "/path/to/the/file.ext";
const modelId = "MY_OCR_MODEL_ID";
const modelId = "MY_MODEL_ID";

// Init a new client
const mindeeClient = new mindee.Client(
Expand Down
2 changes: 1 addition & 1 deletion docs/code_samples/v2_split.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as mindee from "mindee";

const apiKey = "MY_API_KEY";
const filePath = "/path/to/the/file.ext";
const modelId = "MY_SPLIT_MODEL_ID";
const modelId = "MY_MODEL_ID";

// Init a new client
const mindeeClient = new mindee.Client(
Expand Down
Loading
Loading