Skip to content

Commit ea15aa6

Browse files
Andrei Titovgitbook-bot
authored andcommitted
GITBOOK-448: Andrei's Oct 12 changes
1 parent 91c423d commit ea15aa6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
* [Claude 3.7 Sonnet](api-references/text-models-llm/anthropic/claude-3.7-sonnet.md)
3939
* [Claude 4 Opus](api-references/text-models-llm/anthropic/claude-4-opus.md)
4040
* [Claude 4 Sonnet](api-references/text-models-llm/anthropic/claude-4-sonnet.md)
41-
* [Claude Sonnet 4.5](api-references/text-models-llm/anthropic/claude-4-5-sonnet.md)
4241
* [Claude 4.1 Opus](api-references/text-models-llm/anthropic/claude-opus-4.1.md)
42+
* [Claude 4.5 Sonnet](api-references/text-models-llm/anthropic/claude-4-5-sonnet.md)
4343
* [Cohere](api-references/text-models-llm/Cohere/README.md)
4444
* [command-a](api-references/text-models-llm/cohere/command-a.md)
4545
* [DeepSeek](api-references/text-models-llm/DeepSeek/README.md)

docs/api-references/video-models/pixverse/v5-image-to-video.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def generate_video():
6262
"model": "pixverse/v5/image-to-video",
6363
"prompt": "Mona Lisa puts on glasses with her hands.",
6464
"image_url": "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
65-
"duration": "5"
65+
"duration": 5
6666
}
6767

6868
response = requests.post(url, json=data, headers=headers)
@@ -147,7 +147,7 @@ function generateVideo(callback) {
147147
model: "pixverse/v5/image-to-video",
148148
prompt: "Mona Lisa puts on glasses with her hands.",
149149
image_url: "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
150-
duration: "5",
150+
duration: 5,
151151
});
152152

153153
const url = new URL(`${baseUrl}/generate/video/pixverse/generation`);

docs/api-references/video-models/pixverse/v5-text-to-video.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def generate_video():
6464
"model": "pixverse/v5/text-to-video",
6565
"prompt": "A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.",
6666
"resolution": "1080p",
67-
"duration": "5"
67+
"duration": 5
6868
}
6969

7070
response = requests.post(url, json=data, headers=headers)
@@ -147,7 +147,7 @@ function generateVideo(callback) {
147147
A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.
148148
`,
149149
resolution: '1080p',
150-
duration: '5',
150+
duration: 5,
151151
});
152152

153153
const url = new URL(`${baseUrl}/generate/video/pixverse/generation`);

docs/api-references/video-models/pixverse/v5-transition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def generate_video():
6565
"prompt": "Mona Lisa sits holding glasses in her hands, then puts them on, but changes her mind, takes them off, and hides them in a handbag on her lap. Then she smiles.",
6666
"image_url": "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
6767
"tail_image_url": "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
68-
"duration": "8"
68+
"duration": 8
6969
}
7070

7171
response = requests.post(url, json=data, headers=headers)
@@ -149,7 +149,7 @@ function generateVideo(callback) {
149149
prompt: "Mona Lisa sits holding glasses in her hands, then puts them on, but changes her mind, takes them off, and hides them in a handbag on her lap. Then she smiles.",
150150
image_url: "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
151151
tail_image_url: "https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg",
152-
duration: "8",
152+
duration: 8,
153153
});
154154

155155
const url = new URL(`${baseUrl}/generate/video/pixverse/generation`);

0 commit comments

Comments
 (0)