Interface ICodeSessionProviderService
- Namespace
- FoundationaLLM.Context.Interfaces
- Assembly
- FoundationaLLM.Context.dll
Defines the interface for code session provider services.
public interface ICodeSessionProviderService
- Extension Methods
Properties
ProviderName
Gets the name of the code session provider.
string ProviderName { get; }
Property Value
Methods
CreateCodeSession(string, string, string, string, string, UnifiedUserIdentity)
Creates a new code session.
Task<CreateCodeSessionResponse> CreateCodeSession(string instanceId, string agentName, string conversationId, string context, string language, UnifiedUserIdentity userIdentity)
Parameters
instanceId
stringThe unique identifier of the FoundationaLLM instance.
agentName
stringThe name of the agent for which the code execution session is created.
conversationId
stringThe unique identifier of the conversation.
context
stringThe context in which the code execution session is created. This is usually the name of the agent tool, but it is not limited to that.
language
stringThe code session programing language.
userIdentity
UnifiedUserIdentityThe UnifiedUserIdentity providing the user identity information.
Returns
- Task<CreateCodeSessionResponse>
A CreateCodeSessionResponse object with the properties of the code execution session.
DeleteCodeSessionFileStoreItems(string, string)
Deletes all files from a code session.
Task DeleteCodeSessionFileStoreItems(string codeSessionId, string endpoint)
Parameters
codeSessionId
stringThe identifier of the code session.
endpoint
stringThe endpoint of the code session service.
Returns
DownloadFileFromCodeSession(string, string, string, string)
Downloads a file from a code session.
Task<Stream?> DownloadFileFromCodeSession(string codeSessionId, string endpoint, string fileName, string filePath)
Parameters
codeSessionId
stringThe identifier of the code session.
endpoint
stringThe endpoint of the code session service.
fileName
stringThe name of the file to download.
filePath
stringThe path to the file to download.
Returns
GetCodeSessionFileStoreItems(string, string)
Lists files from a code session.
Task<List<CodeSessionFileStoreItem>> GetCodeSessionFileStoreItems(string codeSessionId, string endpoint)
Parameters
codeSessionId
stringThe identifier of the code session.
endpoint
stringThe endpoint of the code session service.
Returns
- Task<List<CodeSessionFileStoreItem>>
The list of file paths from the code session.
UploadFileToCodeSession(string, string, string, Stream)
Uploads a file to a code execution session.
Task<bool> UploadFileToCodeSession(string codeSessionId, string endpoint, string fileName, Stream fileContent)
Parameters
codeSessionId
stringThe identifier of the code session.
endpoint
stringThe endpoint of the code session service.
fileName
stringThe name of the file to upload.
fileContent
StreamThe stream containing the binary content of the file to upload.