Encamina.Enmarcha.AI.OpenAI.Azure 8.1.6

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Encamina.Enmarcha.AI.OpenAI.Azure --version 8.1.6
NuGet\Install-Package Encamina.Enmarcha.AI.OpenAI.Azure -Version 8.1.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Encamina.Enmarcha.AI.OpenAI.Azure" Version="8.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Encamina.Enmarcha.AI.OpenAI.Azure --version 8.1.6
#r "nuget: Encamina.Enmarcha.AI.OpenAI.Azure, 8.1.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Encamina.Enmarcha.AI.OpenAI.Azure as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.AI.OpenAI.Azure&version=8.1.6

// Install Encamina.Enmarcha.AI.OpenAI.Azure as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.AI.OpenAI.Azure&version=8.1.6

AI - Azure OpenAI

Nuget package

This project focuses on making it easier to use Azure OpenAI services to utilize the completion service.

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.AI.OpenAI.Azure from the package manager console:

PM> Install-Package Encamina.Enmarcha.AI.OpenAI.Azure

.NET CLI:

First, install .NET CLI. Then, install Encamina.Enmarcha.AI.OpenAI.Azure from the .NET CLI:

dotnet add package Encamina.Enmarcha.AI.OpenAI.Azure

How to use

First, you need to add the CompletionServiceOptions to your project configuration. You can achieve this by using any configuration provider. The followng code is an example of how the settings would appear using the appsettings.json file:

  {
    // ...
    "CompletionServiceOptions": {
        "DeploymentName": "<YOUR-COMPLETION-MODEL-NAME>", // Name of the deployed model to use with this completion service
        "Name": "completion-service-test", // Name of this completion service
        "EndpointUrl": "<YOUR-AZURE-OPEN-AI-ENDPOINT>", // /Azure OpenAI endpoint's url
        "KeyCredential": "<YOUR-AZURE-API-KEY>" // Azure OpenAI (security) key
    }
    // ...
  }

Next, in Program.cs or a similar entry point file in your project, add the following code.

// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
   // ...
});

// ...

// Or others configuration providers...
builder.Configuration.AddJsonFile(@"appsettings.json", optional: true, reloadOnChange: true);

builder.Services.AddAzureOpenAICompletionService(builder.Configuration);

The AddAzureOpenAICompletionService extension method will add the default implementation of the ICompletionService interface as Transient. The default implementation is CompletionService. With this, we can resolve the ICompletionService with construction injection.

public class MyClass
{
    private readonly ICompletionService completionService;

    public MyClass(ICompletionService completionService)
    {
        this.completionService = completionService;
    }

    public async Task TestCompletionAsync()
    {
        var completionResult = await completionService.CompleteAsync(new CompletionRequest()
        {
            DoEcho = null,
            BestOf = null,
            Prompts = new List<string> { "Console.WriteL" },
            StopSequences = Enumerable.Empty<string>(),
            NumberOfCompletionsPerPrompt = 1,
            Temperature = 0,
            MaxTokens = 20
        }, CancellationToken.None);

        var firstResult = completionResult.Completitions.First().Text;
    }
}

Within firstResult, you will find texts that say something like Ine("Hello World");.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Encamina.Enmarcha.AI.OpenAI.Azure:

Package Downloads
Encamina.Enmarcha.SemanticKernel.Connectors.Memory

Package Description

Encamina.Enmarcha.SemanticKernel.Plugins.Chat

Package Description

Encamina.Enmarcha.SemanticKernel.Plugins.QuestionAnswering

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.7-preview-02 59 5/10/2024
8.1.7-preview-01 79 5/8/2024
8.1.6 206 5/7/2024
8.1.6-preview-08 34 5/2/2024
8.1.6-preview-07 50 4/29/2024
8.1.6-preview-06 165 4/26/2024
8.1.6-preview-05 63 4/24/2024
8.1.6-preview-04 97 4/22/2024
8.1.6-preview-03 59 4/22/2024
8.1.6-preview-02 140 4/17/2024
8.1.6-preview-01 153 4/15/2024
8.1.5 86 4/15/2024
8.1.5-preview-15 69 4/10/2024
8.1.5-preview-14 85 3/20/2024
8.1.5-preview-13 47 3/18/2024
8.1.5-preview-12 67 3/13/2024
8.1.5-preview-11 50 3/13/2024
8.1.5-preview-10 78 3/13/2024
8.1.5-preview-09 51 3/12/2024
8.1.5-preview-08 48 3/12/2024
8.1.5-preview-07 54 3/8/2024
8.1.5-preview-06 361 3/8/2024
8.1.5-preview-05 51 3/7/2024
8.1.5-preview-04 55 3/7/2024
8.1.5-preview-03 56 3/7/2024
8.1.5-preview-02 188 2/28/2024
8.1.5-preview-01 148 2/19/2024
8.1.4 289 2/15/2024
8.1.3 83 2/13/2024
8.1.3-preview-07 46 2/13/2024
8.1.3-preview-06 58 2/12/2024
8.1.3-preview-05 57 2/9/2024
8.1.3-preview-04 59 2/8/2024
8.1.3-preview-03 52 2/7/2024
8.1.3-preview-02 63 2/2/2024
8.1.3-preview-01 58 2/2/2024
8.1.2 120 2/1/2024
8.1.2-preview-9 75 1/22/2024
8.1.2-preview-8 59 1/19/2024
8.1.2-preview-7 60 1/19/2024
8.1.2-preview-6 50 1/19/2024
8.1.2-preview-5 58 1/19/2024
8.1.2-preview-4 59 1/19/2024
8.1.2-preview-3 57 1/18/2024
8.1.2-preview-2 72 1/18/2024
8.1.2-preview-16 57 1/31/2024
8.1.2-preview-15 56 1/31/2024
8.1.2-preview-14 181 1/25/2024
8.1.2-preview-13 56 1/25/2024
8.1.2-preview-12 55 1/23/2024
8.1.2-preview-11 50 1/23/2024
8.1.2-preview-10 57 1/22/2024
8.1.2-preview-1 54 1/18/2024
8.1.1 96 1/18/2024
8.1.0 66 1/18/2024
8.0.3 99 12/29/2023
8.0.1 86 12/14/2023
8.0.0 73 12/7/2023
6.0.4.3 65 12/29/2023
6.0.4.2 57 12/20/2023
6.0.4.1 60 12/19/2023
6.0.4 72 12/4/2023
6.0.3.20 65 11/27/2023
6.0.3.19 68 11/22/2023