Skip to content

Commit

Permalink
Rename a couple of samples (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseharriaga authored Mar 29, 2024
1 parent 1aaede4 commit e6f141f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial class ChatSamples
{
[Test]
[Ignore("Compilation validation only")]
public void Sample04_Protocol()
public void Sample04_SimpleChatProtocol()
{
ChatClient client = new("gpt-3.5-turbo", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public partial class ChatSamples
{
[Test]
[Ignore("Compilation validation only")]
public async Task Sample04_ProtocolAsync()
public async Task Sample04_SimpleChatProtocolAsync()
{
ChatClient client = new("gpt-3.5-turbo", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public partial class ImageSamples
{
[Test]
[Ignore("Compilation validation only")]
public void Sample01_SimpleImage()
public void Sample01_SimpleImageGeneration()
{
ImageClient client = new("dall-e-3", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial class ImageSamples
{
[Test]
[Ignore("Compilation validation only")]
public async Task Sample01_SimpleImageAsync()
public async Task Sample01_SimpleImageGenerationAsync()
{
ImageClient client = new("dall-e-3", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));

Expand Down

0 comments on commit e6f141f

Please sign in to comment.