Skip to content

Commit bb562b6

Browse files
committed
Replace spaces with _ in YOUR BYTEZ KEY HERE.
1 parent 11d4d47 commit bb562b6

File tree

97 files changed

+197
-197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+197
-197
lines changed

README.md

Lines changed: 3 additions & 3 deletions

examples/javascript/tasks/audioClassification/audioClassification.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const inputAudioBase64 = await getBase64Audio(
66
"https://huggingface.co/datasets/huggingfacejs/tasks/resolve/main/audio-classification/audio.wav"

examples/javascript/tasks/automaticSpeechRecognition/automaticSpeechRecognition.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const inputAudioBase64 = await getBase64Audio(
66
"https://huggingface.co/datasets/huggingfacejs/tasks/resolve/main/automatic-speech-recognition/input.flac"

examples/javascript/tasks/chatModels/chatModels.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const messages = [
66
{

examples/javascript/tasks/depthEstimation/depthEstimation.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { writeFileSync } from "fs";
66
const __filename = fileURLToPath(import.meta.url);
77
const __dirname = dirname(__filename);
88

9-
const client = new Bytez("YOUR BYTEZ KEY HERE");
9+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
1010

1111
const inputImage =
1212
"https://as1.ftcdn.net/v2/jpg/03/03/55/82/1000_F_303558268_YNUQp9NNMTE0X4zrj314mbWcDHd1pZPD.jpg";

examples/javascript/tasks/documentQuestionAnswering/documentQuestionAnswering.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const model = client.model("cloudqi/CQI_Visual_Question_Awnser_PT_v0");
66

examples/javascript/tasks/featureExtraction/featureExtraction.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const inputText = "Your text for feature extraction goes here...";
66

examples/javascript/tasks/fillMask/fillMask.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const model = client.model("almanach/camembert-base");
66

examples/javascript/tasks/functionCallingModels/functionCallingModels.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const inputText = "What's the weather like in Seattle right now?";
66

examples/javascript/tasks/imageClassification/imageClassification.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Bytez from "bytez.js";
22

3-
const client = new Bytez("YOUR BYTEZ KEY HERE");
3+
const client = new Bytez("YOUR_BYTEZ_KEY_HERE");
44

55
const imgUrl =
66
"https://www.padoniavets.com/sites/default/files/field/image/cats-and-dogs.jpg";

0 commit comments

Comments
 (0)