chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel;
|
||||
|
||||
namespace PromptTemplates;
|
||||
|
||||
/// <summary>
|
||||
/// This example shows how to use GPT3.5 Chat model for prompts and prompt functions.
|
||||
/// </summary>
|
||||
public class PromptFunctionsWithChatGPT(ITestOutputHelper output) : BaseTest(output)
|
||||
{
|
||||
[Fact]
|
||||
public async Task RunAsync()
|
||||
{
|
||||
Console.WriteLine("======== Using Chat GPT model for text generation ========");
|
||||
|
||||
Kernel kernel = Kernel.CreateBuilder()
|
||||
.AddAzureOpenAIChatCompletion(
|
||||
deploymentName: TestConfiguration.AzureOpenAI.ChatDeploymentName,
|
||||
endpoint: TestConfiguration.AzureOpenAI.Endpoint,
|
||||
apiKey: TestConfiguration.AzureOpenAI.ApiKey,
|
||||
modelId: TestConfiguration.AzureOpenAI.ChatModelId)
|
||||
.Build();
|
||||
|
||||
var func = kernel.CreateFunctionFromPrompt(
|
||||
"List the two planets closest to '{{$input}}', excluding moons, using bullet points.");
|
||||
|
||||
var result = await func.InvokeAsync(kernel, new() { ["input"] = "Jupiter" });
|
||||
Console.WriteLine(result.GetValue<string>());
|
||||
|
||||
/*
|
||||
Output:
|
||||
- Saturn
|
||||
- Uranus
|
||||
*/
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user