Table of Contents

Class CoreClient

Namespace
FoundationaLLM.Client.Core
Assembly
FoundationaLLM.Client.Core.dll

Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.

public class CoreClient : ICoreClient
Inheritance
CoreClient
Implements
Inherited Members
Extension Methods

Constructors

CoreClient()

Constructor for mocking. This does not initialize the clients.

public CoreClient()

CoreClient(string, TokenCredential, string)

Initializes a new instance of the CoreClient class with the specified Core API URI and TokenCredential.

public CoreClient(string coreUri, TokenCredential credential, string instanceId)

Parameters

coreUri string

The base URI of the Core API.

credential TokenCredential

A TokenCredential of an authenticated user or service principle from which the client library can generate auth tokens.

instanceId string

The unique (GUID) ID for the FoundationaLLM deployment. Locate this value in the FoundationaLLM Management Portal or in Azure App Config (FoundationaLLM:Instance:Id key)

CoreClient(string, TokenCredential, string, APIClientSettings)

Initializes a new instance of the CoreClient class with the specified Core API URI, TokenCredential, and optional client settings.

public CoreClient(string coreUri, TokenCredential credential, string instanceId, APIClientSettings options)

Parameters

coreUri string

The base URI of the Core API.

credential TokenCredential

A TokenCredential of an authenticated user or service principle from which the client library can generate auth tokens.

instanceId string

The unique (GUID) ID for the FoundationaLLM deployment. Locate this value in the FoundationaLLM Management Portal or in Azure App Config (FoundationaLLM:Instance:Id key)

options APIClientSettings

Additional options to configure the HTTP Client.

Methods

AttachFileAndAskQuestionAsync(Stream, string, string, string, string, bool, string?, ChatSessionProperties?)

Attaches a file to the completion request and sends a question to the agent using the Core API.If the useSession parameter is true, the method uses an existing session or creates a new chat session and optionally renames it. existing session

public Task<Message> AttachFileAndAskQuestionAsync(Stream fileStream, string fileName, string contentType, string agentName, string question, bool useSession, string? sessionId, ChatSessionProperties? chatSessionProperties)

Parameters

fileStream Stream

The file contents of the new Attachment resource.

fileName string

The name of the file.

contentType string

The Content-Type header value of a valid mime type that is used to create a new MediaTypeHeaderValue as part of the MultipartFormDataContent sent to the API endpoint.

agentName string

The name of the FoundationaLLM agent that will handle the completion request.

question string

The user prompt to send to the agent along with the attachment.

useSession bool

If true, the completion is sent to a new or existing session. If false, no session is created and the sessionless orchestration flow is used.

sessionId string

The ID of an existing session. If null or empty, a new session is created first.

chatSessionProperties ChatSessionProperties

Optional session properties.

Returns

Task<Message>

A completion from the designated FoundationaLLM agent.

CreateChatSessionAsync(ChatSessionProperties)

Creates a new chat session with the specified name.

public Task<string> CreateChatSessionAsync(ChatSessionProperties chatSessionProperties)

Parameters

chatSessionProperties ChatSessionProperties

Returns

Task<string>

The new chat session ID.

DeleteSessionAsync(string)

Deletes a chat session.

public Task DeleteSessionAsync(string sessionId)

Parameters

sessionId string

The ID of the session to delete.

Returns

Task

GetAgentsAsync()

Retrieves agents available to the user for orchestration and session-based requests.

public Task<IEnumerable<ResourceProviderGetResult<AgentBase>>> GetAgentsAsync()

Returns

Task<IEnumerable<ResourceProviderGetResult<AgentBase>>>

A list of available agents.

GetChatSessionMessagesAsync(string)

Returns the chat messages related to an existing session.

public Task<IEnumerable<Message>> GetChatSessionMessagesAsync(string sessionId)

Parameters

sessionId string

Returns

Task<IEnumerable<Message>>

GetCompletionAsync(CompletionRequest)

Runs a single completion with an agent using the Core API without a chat session (sessionless). This method sends a user prompt to the agent and returns the completion response. You must ensure that the completion request contains an AgentName and UserPrompt.

public Task<Message> GetCompletionAsync(CompletionRequest completionRequest)

Parameters

completionRequest CompletionRequest

The orchestration request that contains the AgentName and UserPrompt at a minimum.

Returns

Task<Message>

A completion from the designated FoundationaLLM agent.

GetCompletionAsync(string, string)

Runs a single completion with an agent using the Core API without a chat session (sessionless). This method sends a user prompt to the agent and returns the completion response.

public Task<Message> GetCompletionAsync(string userPrompt, string agentName)

Parameters

userPrompt string

The user prompt to send to the agent.

agentName string

The name of the FoundationaLLM agent that will handle the completion request.

Returns

Task<Message>

A completion from the designated FoundationaLLM agent.

GetCompletionWithSessionAsync(CompletionRequest)

Runs a single completion request with an agent using the Core API and a chat session. You must ensure that the orchestration request contains a SessionID, AgentName, and UserPrompt.

public Task<Message> GetCompletionWithSessionAsync(CompletionRequest completionRequest)

Parameters

completionRequest CompletionRequest

The orchestration request that contains the SessionID, AgentName, and UserPrompt at a minimum.

Returns

Task<Message>

A completion from the designated FoundationaLLM agent.

GetCompletionWithSessionAsync(string?, ChatSessionProperties?, string, string)

Runs a single completion request with an agent using the Core API and a chat session. To specify an existing session, provide the session ID. Otherwise, a new session will be created. If the session name is provided, the session is renamed.

public Task<Message> GetCompletionWithSessionAsync(string? sessionId, ChatSessionProperties? chatSessionProperties, string userPrompt, string agentName)

Parameters

sessionId string

The ID of an existing session. If null or empty, a new session is created first.

chatSessionProperties ChatSessionProperties
userPrompt string

The user prompt to send to the agent.

agentName string

The name of the FoundationaLLM agent that will handle the completion request.

Returns

Task<Message>

A completion from the designated FoundationaLLM agent.

RateMessageAsync(string, string, MessageRatingRequest)

Sets the rating for a message.

public Task RateMessageAsync(string sessionId, string messageId, MessageRatingRequest rating)

Parameters

sessionId string

The chat session ID that contains the message to rate.

messageId string

The ID of the message to rate.

rating MessageRatingRequest

The rating and optional comments to assign to the message.

Returns

Task