FoundationaLLM.Client.Core 0.9.7-beta132

This is a prerelease version of FoundationaLLM.Client.Core.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package FoundationaLLM.Client.Core --version 0.9.7-beta132
                    
NuGet\Install-Package FoundationaLLM.Client.Core -Version 0.9.7-beta132
                    
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="FoundationaLLM.Client.Core" Version="0.9.7-beta132" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FoundationaLLM.Client.Core" Version="0.9.7-beta132" />
                    
Directory.Packages.props
<PackageReference Include="FoundationaLLM.Client.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FoundationaLLM.Client.Core --version 0.9.7-beta132
                    
#r "nuget: FoundationaLLM.Client.Core, 0.9.7-beta132"
                    
#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.
#addin nuget:?package=FoundationaLLM.Client.Core&version=0.9.7-beta132&prerelease
                    
Install FoundationaLLM.Client.Core as a Cake Addin
#tool nuget:?package=FoundationaLLM.Client.Core&version=0.9.7-beta132&prerelease
                    
Install FoundationaLLM.Client.Core as a Cake Tool

FoundationaLLM Core Client

The FoundationaLLM Core Client is a .NET client library that simplifies the process of interacting with the FoundationaLLM Core API. The client library provides a set of classes and methods that allow you to interact with the FoundationaLLM Core API in a more intuitive way.

This library contains two primary classes:

  • CoreRESTClient: A class that provides a set of methods for interacting with the FoundationaLLM Core API using REST. This is considered the low-level client and provides direct access to all Core API endpoints.
  • CoreClient: A class that provides a set of methods for interacting with the FoundationaLLM Core API using a higher-level abstraction. This class is designed to simplify the process of interacting with the Core API by providing a more intuitive interface. It does not contain all the methods available in the CoreRESTClient class, but it provides a more user-friendly way to interact with the Core API.

[!NOTE] These two classes are mutually exclusive, and you should choose one based on your requirements. If you need direct access to all Core API endpoints, use the CoreRESTClient class. If you need a more user-friendly interface, use the CoreClient class.

Getting started

[!TIP] If you do not have FoundationaLLM deployed, follow the Quick Start Deployment instructions to get FoundationaLLM deployed in your Azure subscription.

Install the NuGet package:

dotnet add package FoundationaLLM.Client.Core

Manual service instantiation

Complete the following steps if you do not want to use dependency injection:

  1. Create a new instance of the CoreRESTClient and CoreClient classes:

    var coreUri = "<YOUR_CORE_API_URL>"; // e.g., "https://myfoundationallmcoreapi.com"
    var instanceId = "<YOUR_INSTANCE_ID>"; // Each FoundationaLLM deployment has a unique (GUID) ID. Locate this value in the FoundationaLLM Management Portal or in Azure App Config (FoundationaLLM:Instance:Id key)
    
    var credential = new AzureCliCredential(); // Can use any TokenCredential implementation, such as ManagedIdentityCredential or AzureCliCredential.
    var options = new APIClientSettings // Optional settings parameter. Default timeout is 900 seconds.
    {
        Timeout = TimeSpan.FromSeconds(600)
    };
    
    var coreRestClient = new CoreRESTClient(
        coreUri,
        credential,
        instanceId,
        options);
    var coreClient = new CoreClient(
        coreUri,
        credential,
        instanceId,
        options);
    
  2. Make a request to the Core API with the CoreRESTClient class:

    var status = await coreRestClient.Status.GetServiceStatusAsync();
    
  3. Make a request to the Core API with the CoreClient class:

    var results = await coreClient.GetAgentsAsync();
    

[!TIP] You can use the FoundationaLLM.Common.Authentication.DefaultAuthentication class to generate the TokenCredential. This class sets the AzureCredential property using the ManagedIdentityCredential when running in a production environment (production parameter of the Initialize method) and the AzureCliCredential when running in a development environment.

Example:

DefaultAuthentication.Initialize(false, "Test"); var credentials = DefaultAuthentication.AzureCredential;

Use dependency injection with a configuration file

Rather than manually instantiating the CoreRESTClient and CoreClient classes, you can use dependency injection to manage the instances. This approach is more flexible and allows you to easily switch between different implementations of the ICoreClient and ICoreRESTClient interfaces.

  1. Create a configuration file (e.g., appsettings.json) with the following content:

    {
        "FoundationaLLM": {
            "APIEndpoints": {
     	        "CoreAPI": {
     	            "Essentials": {
     	                "APIUrl": "https://localhost:63279/"
                    }
     		    },
            },
            "Instance": {
                "Id": "00000000-0000-0000-0000-000000000000"
            }
        }
    }
    
  2. Read the configuration file:

    var configuration = new ConfigurationBuilder()
        .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
        .Build();
    
  3. Use the CoreClient extension method to add the CoreClient and CoreRESTClient to the service collection:

    var services = new ServiceCollection();
    var credential = new AzureCliCredential(); // Can use any TokenCredential implementation, such as ManagedIdentityCredential or AzureCliCredential.
    services.AddCoreClient(
        configuration[AppConfigurationKeys.FoundationaLLM_APIEndpoints_CoreAPI_Essentials_APIUrl]!,
        credential,
        configuration[AppConfigurationKeys.FoundationaLLM_Instance_Id]!);
    
    var serviceProvider = services.BuildServiceProvider();
    
  4. Retrieve the CoreClient and CoreRESTClient instances from the service provider:

    var coreClient = serviceProvider.GetRequiredService<ICoreClient>();
    var coreRestClient = serviceProvider.GetRequiredService<ICoreRESTClient>();
    

Alternately, you can inject the CoreClient and CoreRESTClient instances directly into your classes using dependency injection.

public class MyService
{
    private readonly ICoreClient _coreClient;
    private readonly ICoreRESTClient _coreRestClient;

    public MyService(ICoreClient coreClient, ICoreRESTClient coreRestClient)
    {
        _coreClient = coreClient;
        _coreRestClient = coreRestClient;
    }
}

Use dependency injection with Azure App Configuration

If you prefer to retrieve the configuration settings from Azure App Configuration, you can use the Microsoft.Azure.AppConfiguration.AspNetCore or Microsoft.Extensions.Configuration.AzureAppConfiguration package to retrieve the configuration settings from Azure App Configuration.

  1. Connect to Azure App Configuration:

    var configuration = new ConfigurationBuilder()
        .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
        .AddEnvironmentVariables()
        .AddAzureAppConfiguration(options =>
        {
            options.Connect("<connection-string>");
            options.ConfigureKeyVault(kv =>
            {
                kv.SetCredential(Credentials);
            });
            options.Select(AppConfigurationKeyFilters.FoundationaLLM_Instance);
            options.Select(AppConfigurationKeyFilters.FoundationaLLM_APIEndpoints_CoreAPI_Essentials);
        })
        .Build();
    

    If you have configured your local development environment, you can obtain the App Config connection string from an environment variable (Environment.GetEnvironmentVariable(EnvironmentVariables.FoundationaLLM_AppConfig_ConnectionString)) when developing locally.

  2. Use the CoreClient extension method to add the CoreClient and CoreRESTClient to the service collection:

    var services = new ServiceCollection();
    var credential = new AzureCliCredential(); // Can use any TokenCredential implementation, such as ManagedIdentityCredential or AzureCliCredential.
    
    services.AddCoreClient(
        configuration[AppConfigurationKeys.FoundationaLLM_APIEndpoints_CoreAPI_Essentials_APIUrl]!,
        credential,
        configuration[AppConfigurationKeys.FoundationaLLM_Instance_Id]!);
    
  3. Retrieve the CoreClient and CoreRESTClient instances from the service provider:

    var coreClient = serviceProvider.GetRequiredService<ICoreClient>();
    var coreRestClient = serviceProvider.GetRequiredService<ICoreRESTClient>();
    

Example projects

The Core.Examples test project contains several examples that demonstrate how to use the CoreClient and CoreRESTClient classes to interact with the Core API through a series of end-to-end tests.

FoundationaLLM: The platform for deploying, scaling, securing and governing generative AI in the enterprises 🚀

License

FoundationaLLM provides the platform for deploying, scaling, securing and governing generative AI in the enterprise. With FoundationaLLM you can:

  • Create AI agents that are grounded in your enterprise data, be that text, semi-structured or structured data.
  • Make AI agents available to your users through a branded chat interface or integrate the REST API to the AI agent into your application for a copilot experience or integrate the Agent API in a machine-to-machine automated process.
  • Experiment building agents that can use a variety of large language models including OpenAI GPT-4, Mistral and Llama 2 or any models pulled from the Hugging Face model catalog that provide a REST completions endpoint.
  • Centrally manage, configure and secure your AI agents AND their underlying assets including prompts, data sources, vectorization data pipelines, vector databases and large language models using the management portal.
  • Enable everyone in your enterprise to create their own AI agents. Your non-developer users can create and deploy their own agents in a self-service fashion from the management portal, but we don't get in the way of your advanced AI developers who can deploy their own orchestrations built in LangChain, Semantic Kernel, Prompt Flow or any orchestration that exposes a completions endpoint.
  • Deploy and manage scalable vectorization data pipelines that can ingest millions of documents to provide knowledge to your model.
  • Empower your users with as many task-focused AI agents as desired.
  • Control access to the AI agents and the resources they access using role-based access controls (RBAC).
  • Harness the rapidly evolving capabilities from Azure AI and Azure OpenAI from one integrated stack.

[!NOTE] FoundationaLLM is not a large language model. It enables you to use the large language models of your choice (e.g., OpenAI GPT-4, Mistral, LLama 2, etc.)

FoundationaLLM deploys a secure, comprehensive and highly configurable copilot platform to your Azure cloud environment:

  • Simplifies integration with enterprise data sources used by agent for in-context learning (e.g., enabling RAG, CoT, ReAct and inner monologue patterns).
  • Provides defense in depth with fine-grain security controls over data used by agent and pre/post completion filters that guard against attack.
  • Hardened solution attacked by an LLM red team from inception.
  • Scalable solution load balances across multiple LLM endpoints.
  • Extensible to new data sources, new LLM orchestrators and LLMs.

Why is FoundationaLLM Needed?

Simply put we saw a lot of folks reinventing the wheel just to get a customized copilot or AI agent that was grounded and bases its responses in their own data as opposed to the trained parametric knowledge of the model. Many of the solutions we saw made for great demos, but were effectively toys wrapping calls to OpenAI endpoints- they were not something intended or ready to take into production at enterprise scale. We built FoundationaLLM to provide a continuous journey, one that was quick to get started with so folks could experiment quickly with LLM's but not fall off a cliff after that with a solution that would be insecure, unlicensed, inflexible and not fully featured enough to grow from the prototype into a production solution without having to start all over.

The core problems to deliver enterprise copilots or AI agents are:

  • Enterprise grade copilots or AI agents are complex and have lots of moving parts (not to mention infrastructure).
  • The industry has a skills gap when it comes to filling the roles needed to deliver these complex copilot solutions.
  • The top AI risks (inaccuracy, cybersecurity, compliance, explainability, privacy) are not being mitigated by individual tools.
  • Delivery of a copilot or AI agent solution is time consuming, expensive and frustrating when starting from scratch.

Documentation

Get up to speed with FoundationaLLM by reading the documentation. This includes deployment instructions, quickstarts, architecture, and API references.

Getting Started

FoundationaLLM provides a simple command line driven approach to getting your first deployment up and running. Basically, it's two commands. After that, you can customize the solution, run it locally on your machine and update the deployment with your customizations.

Follow the Quick Start Deployment instructions to get FoundationaLLM deployed in your Azure subscription.

Reporting Issues and Support

If you encounter any issues with FoundationaLLM, please open an issue on GitHub. We will respond to your issue as soon as possible. Please use the Labels (bug, documentation, general question, release x.x.x) to categorize your issue and provide as much detail as possible to help us understand and resolve the issue.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.7-beta137 130 3 days ago
0.9.7-beta136 127 4 days ago
0.9.7-beta135 137 4 days ago
0.9.7-beta134 130 4 days ago
0.9.7-beta133 131 4 days ago
0.9.7-beta132 131 4 days ago
0.9.7-beta131 129 5 days ago
0.9.7-beta130 140 5 days ago
0.9.7-beta129 136 6 days ago
0.9.7-beta128 134 6 days ago
0.9.7-beta127 128 6 days ago
0.9.7-beta126 124 6 days ago
0.9.7-beta125 441 11 days ago
0.9.7-beta124 443 11 days ago
0.9.7-beta123 446 11 days ago
0.9.7-beta122 446 11 days ago
0.9.7-beta121 446 12 days ago
0.9.7-beta120 441 12 days ago
0.9.7-beta119 453 12 days ago
0.9.7-beta118 447 12 days ago
0.9.7-beta117 454 12 days ago
0.9.7-beta116 463 12 days ago
0.9.7-beta115 382 13 days ago
0.9.7-beta114 246 14 days ago
0.9.7-beta113 69 15 days ago
0.9.7-beta112 91 16 days ago
0.9.7-beta111 128 17 days ago
0.9.7-beta110 136 18 days ago
0.9.7-beta109 131 19 days ago
0.9.7-beta108 128 19 days ago
0.9.7-beta107 127 19 days ago
0.9.7-beta106 139 20 days ago
0.9.7-beta105 130 24 days ago
0.9.7-beta104 134 24 days ago
0.9.7-beta103 147 a month ago
0.9.7-beta102 140 a month ago
0.9.7-beta101 189 a month ago
0.9.7-beta100 182 a month ago
0.9.6 192 a month ago
0.9.6-rc100 78 a month ago
0.9.5 94 a month ago
0.9.5-rc102 79 a month ago
0.9.5-rc101 84 a month ago
0.9.5-rc100 90 a month ago
0.9.4 97 2 months ago
0.9.3 101 2 months ago
0.9.3-rc018 85 2 months ago
0.9.3-rc017 83 2 months ago
0.9.3-rc016 86 2 months ago
0.9.3-rc015 93 2 months ago
0.9.3-rc014 79 2 months ago
0.9.3-rc013 83 2 months ago
0.9.3-rc012 91 2 months ago
0.9.3-rc011 84 2 months ago
0.9.3-rc010 80 2 months ago
0.9.3-rc009 92 2 months ago
0.9.3-rc008 88 2 months ago
0.9.3-rc007 86 2 months ago
0.9.3-rc006 87 2 months ago
0.9.3-rc005 90 2 months ago
0.9.3-rc004 85 2 months ago
0.9.3-rc003 90 2 months ago
0.9.3-rc002 77 2 months ago
0.9.3-rc001 69 2 months ago
0.9.2 75 2 months ago
0.9.2-rc007 63 2 months ago
0.9.2-rc006 69 2 months ago
0.9.2-rc005 70 2 months ago
0.9.2-rc004 68 2 months ago
0.9.2-rc003 65 2 months ago
0.9.2-rc002 69 2 months ago
0.9.2-rc001 71 2 months ago
0.9.2-a001 92 3 months ago
0.9.1 90 3 months ago
0.9.1-rc131 78 3 months ago
0.9.1-rc130 79 3 months ago
0.9.1-rc129 79 3 months ago
0.9.1-rc128 80 3 months ago
0.9.1-rc127 74 3 months ago
0.9.1-rc126 87 3 months ago
0.9.1-rc125 80 3 months ago
0.9.1-rc124 83 3 months ago
0.9.1-rc123 76 3 months ago
0.9.1-rc122 69 3 months ago
0.9.1-rc121 70 3 months ago
0.9.1-rc120 73 3 months ago
0.9.1-rc118 82 3 months ago
0.9.1-rc117 86 3 months ago
0.9.1-rc116 68 3 months ago
0.9.1-rc115 85 3 months ago
0.9.1-rc114 84 3 months ago
0.9.1-rc113 77 3 months ago
0.9.1-rc112 90 3 months ago
0.9.1-rc111 87 3 months ago
0.9.1-rc110 80 4 months ago
0.9.1-rc109 82 4 months ago
0.9.1-rc108 84 4 months ago
0.9.1-rc107 94 4 months ago
0.9.1-rc106 84 4 months ago
0.9.1-rc105 87 4 months ago
0.9.1-rc104 84 4 months ago
0.9.1-rc100 95 4 months ago
0.9.1-alpha4 93 4 months ago
0.9.1-alpha3 86 4 months ago
0.9.0-rc3 86 4 months ago
0.9.0-rc2 92 4 months ago
0.9.0-alpha5 90 4 months ago
0.9.0-alpha1 83 4 months ago
0.8.4 105 5 months ago
0.8.3 132 7 months ago
0.8.2 111 7 months ago
0.8.2-alpha2 96 6 months ago
0.8.1 141 7 months ago
0.8.1-alpha2 96 7 months ago