#r "nuget: Microsoft.SemanticKernel, 1.0.0-beta1" #!import config/Settings.cs using Microsoft.SemanticKernel; using Microsoft.SemanticKernel.SemanticFunctions; using Microsoft.SemanticKernel.Connectors.AI.OpenAI; var builder = new KernelBuilder(); // Configure AI backend used by the kernel var (useAzureOpenAI, model, azureEndpoint, apiKey, orgId) = Settings.LoadFromFile(); if (useAzureOpenAI) builder.WithAzureChatCompletionService(model, azureEndpoint, apiKey); else builder.WithOpenAIChatCompletionService(model, apiKey, orgId); IKernel kernel = builder.Build(); string skPrompt = """ {{$input}} Summarize the content above. """; var aiRequestSettings = new OpenAIRequestSettings { MaxTokens = 2000, Temperature = 0.2, TopP = 0.5 }; var promptConfig = new PromptTemplateConfig(); promptConfig.ModelSettings.Add(aiRequestSettings); var promptTemplate = new PromptTemplate( skPrompt, // Prompt template defined in natural language promptConfig, // Prompt configuration kernel // SK instance ); var functionConfig = new SemanticFunctionConfig(promptConfig, promptTemplate); var summaryFunction = kernel.RegisterSemanticFunction("MyPlugin", "Summary", functionConfig); var input = """ Demo (ancient Greek poet) From Wikipedia, the free encyclopedia Demo or Damo (Greek: Δεμώ, Δαμώ; fl. c. AD 200) was a Greek woman of the Roman period, known for a single epigram, engraved upon the Colossus of Memnon, which bears her name. She speaks of herself therein as a lyric poetess dedicated to the Muses, but nothing is known of her life.[1] Identity Demo was evidently Greek, as her name, a traditional epithet of Demeter, signifies. The name was relatively common in the Hellenistic world, in Egypt and elsewhere, and she cannot be further identified. The date of her visit to the Colossus of Memnon cannot be established with certainty, but internal evidence on the left leg suggests her poem was inscribed there at some point in or after AD 196.[2] Epigram There are a number of graffiti inscriptions on the Colossus of Memnon. Following three epigrams by Julia Balbilla, a fourth epigram, in elegiac couplets, entitled and presumably authored by "Demo" or "Damo" (the Greek inscription is difficult to read), is a dedication to the Muses.[2] The poem is traditionally published with the works of Balbilla, though the internal evidence suggests a different author.[1] In the poem, Demo explains that Memnon has shown her special respect. In return, Demo offers the gift for poetry, as a gift to the hero. At the end of this epigram, she addresses Memnon, highlighting his divine status by recalling his strength and holiness.[2] Demo, like Julia Balbilla, writes in the artificial and poetic Aeolic dialect. The language indicates she was knowledgeable in Homeric poetry—'bearing a pleasant gift', for example, alludes to the use of that phrase throughout the Iliad and Odyssey.[a][2] """; var summaryResult = await kernel.RunAsync(input, summaryFunction); var summary = summaryResult.GetValue(); Console.WriteLine(summary); string skPrompt = """ {{$input}} Summarize the content above. """; var summaryFunction = kernel.CreateSemanticFunction(skPrompt, requestSettings: new OpenAIRequestSettings { MaxTokens = 2000, Temperature = 0.2, TopP = 0.5 }); var summaryResult = await kernel.RunAsync(input, summaryFunction); var summary = summaryResult.GetValue(); Console.WriteLine(summary); var builder = new KernelBuilder(); var (useAzureOpenAI, model, azureEndpoint, apiKey, orgId) = Settings.LoadFromFile(); if (useAzureOpenAI) builder.WithAzureChatCompletionService(model, azureEndpoint, apiKey); else builder.WithOpenAIChatCompletionService(model, apiKey, orgId); var kernel = builder.Build(); string skPrompt = @" {{$input}} Give me the TLDR in 5 words. "; var textToSummarize = @" 1) A robot may not injure a human being or, through inaction, allow a human being to come to harm. 2) A robot must obey orders given it by human beings except where such orders would conflict with the First Law. 3) A robot must protect its own existence as long as such protection does not conflict with the First or Second Law. "; var tldrFunction = kernel.CreateSemanticFunction(skPrompt, requestSettings: new OpenAIRequestSettings { MaxTokens = 2000, Temperature = 0.2, TopP = 0.5 }); var summaryResult = await kernel.RunAsync(textToSummarize, tldrFunction); var summary = summaryResult.GetValue(); Console.WriteLine(summary); // Output => Robots must not harm humans.