Skip to content

Commit 8f24907

Browse files
committed
Fix examples
1 parent 29ee685 commit 8f24907

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/Videos/Example01_VideoCreation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ namespace OpenAI.Examples;
1717
// please acknowledge their experimental status by suppressing the corresponding warning.
1818
#pragma warning disable OPENAI001
1919

20-
public partial class VectorStoreExamples
20+
public partial class VideoExamples
2121
{
2222
[Test]
23-
public void Example01_SimpleVideoCreation()
23+
public void Example01_VideoCreation()
2424
{
2525
// 1) Create the client
2626
VideoClient client = new(new ApiKeyCredential(Environment.GetEnvironmentVariable("OPENAI_API_KEY")));

examples/Videos/Example01_VideoCreationAsync.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ namespace OpenAI.Examples;
1414
// please acknowledge their experimental status by suppressing the corresponding warning.
1515
#pragma warning disable OPENAI001
1616

17-
public partial class VectorStoreExamples
17+
public partial class VideoExamples
1818
{
1919
[Test]
20-
public async Task Example01_SimpleVideoCreationAsync()
20+
public async Task Example01_VideoCreationAsync()
2121
{
2222
// 1) Create the client
2323
VideoClient client = new(new ApiKeyCredential(Environment.GetEnvironmentVariable("OPENAI_API_KEY")));

0 commit comments

Comments
 (0)