chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel;
|
||||
|
||||
namespace GettingStarted;
|
||||
|
||||
public sealed class Step5_Chat_Prompt(ITestOutputHelper output) : BaseTest(output)
|
||||
{
|
||||
/// <summary>
|
||||
/// Show how to construct a chat prompt and invoke it.
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public async Task InvokeChatPrompt()
|
||||
{
|
||||
// Create a kernel with OpenAI chat completion
|
||||
Kernel kernel = Kernel.CreateBuilder()
|
||||
.AddOpenAIChatClient(
|
||||
modelId: TestConfiguration.OpenAI.ChatModelId,
|
||||
apiKey: TestConfiguration.OpenAI.ApiKey)
|
||||
.Build();
|
||||
|
||||
// Invoke the kernel with a chat prompt and display the result
|
||||
string chatPrompt = """
|
||||
<message role="user">What is Seattle?</message>
|
||||
<message role="system">Respond with JSON.</message>
|
||||
""";
|
||||
|
||||
Console.WriteLine(await kernel.InvokePromptAsync(chatPrompt));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user