Table of Contents

Class CodeSessionFileUploadResponse

Namespace
FoundationaLLM.Common.Models.CodeExecution
Assembly
FoundationaLLM.Common.dll

Provides the result of uploading files to a code session.

public class CodeSessionFileUploadResponse
Inheritance
CodeSessionFileUploadResponse
Inherited Members
Extension Methods

Properties

AllFilesUploaded

Gets or sets a value indicating whether all files were uploaded successfully.

[JsonPropertyName("all_files_uploaded")]
public bool AllFilesUploaded { get; set; }

Property Value

bool

FileUploadSuccess

Gets or sets the dictionary containing the success status of each file upload operation.

[JsonPropertyName("file_upload_success")]
public Dictionary<string, bool> FileUploadSuccess { get; set; }

Property Value

Dictionary<string, bool>

OperationId

Gets or sets the unique identifier of the file upload operation

[JsonPropertyName("operation_id")]
public required string OperationId { get; set; }

Property Value

string