-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeSamples.yaml
284 lines (243 loc) · 8.08 KB
/
codeSamples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
overlay: 1.0.0
info:
title: CodeSamples overlay for typescript target
version: 0.0.0
actions:
- target: $["paths"]["/audio-to-text"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genAudioToText
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.audioToText({
audio: await openAsBlob("example.file"),
modelId: "",
returnTimestamps: "true",
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/image-to-image"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genImageToImage
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.imageToImage({
prompt: "<value>",
image: await openAsBlob("example.file"),
modelId: "",
loras: "",
strength: 0.8,
guidanceScale: 7.5,
imageGuidanceScale: 1.5,
negativePrompt: "",
safetyCheck: true,
numInferenceSteps: 100,
numImagesPerPrompt: 1,
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/image-to-text"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genImageToText
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.imageToText({
image: await openAsBlob("example.file"),
prompt: "",
modelId: "",
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/image-to-video"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genImageToVideo
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.imageToVideo({
image: await openAsBlob("example.file"),
modelId: "",
height: 576,
width: 1024,
fps: 6,
motionBucketId: 127,
noiseAugStrength: 0.02,
safetyCheck: true,
numInferenceSteps: 25,
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/live-video-to-video"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genLiveVideoToVideo
source: |-
import { Livepeer } from "@livepeer/ai";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.liveVideoToVideo({
subscribeUrl: "https://soulful-lava.org/",
publishUrl: "https://vain-tabletop.biz",
controlUrl: "",
eventsUrl: "",
modelId: "",
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/llm"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genLLM
source: |-
import { Livepeer } from "@livepeer/ai";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.llm({
messages: [
],
model: "",
temperature: 0.7,
maxTokens: 256,
topP: 1,
topK: -1,
stream: false,
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/segment-anything-2"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genSegmentAnything2
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.segmentAnything2({
image: await openAsBlob("example.file"),
modelId: "",
multimaskOutput: true,
returnLogits: true,
normalizeCoords: true,
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/text-to-image"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genTextToImage
source: |-
import { Livepeer } from "@livepeer/ai";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.textToImage({
modelId: "",
loras: "",
prompt: "<value>",
height: 576,
width: 1024,
guidanceScale: 7.5,
negativePrompt: "",
safetyCheck: true,
numInferenceSteps: 50,
numImagesPerPrompt: 1,
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/text-to-speech"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genTextToSpeech
source: |-
import { Livepeer } from "@livepeer/ai";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.textToSpeech({
modelId: "",
text: "",
description: "A male speaker delivers a slightly expressive and animated speech with a moderate speed and pitch.",
});
// Handle the result
console.log(result);
}
run();
- target: $["paths"]["/upscale"]["post"]
update:
x-codeSamples:
- lang: typescript
label: genUpscale
source: |-
import { Livepeer } from "@livepeer/ai";
import { openAsBlob } from "node:fs";
const livepeer = new Livepeer({
httpBearer: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.generate.upscale({
prompt: "<value>",
image: await openAsBlob("example.file"),
modelId: "",
safetyCheck: true,
numInferenceSteps: 75,
});
// Handle the result
console.log(result);
}
run();