Class CodeSessionFileDownloadResponse
- Namespace
- FoundationaLLM.Common.Models.CodeExecution
- Assembly
- FoundationaLLM.Common.dll
Provides the result of downloading files from a code session.
public class CodeSessionFileDownloadResponse
- Inheritance
-
CodeSessionFileDownloadResponse
- Inherited Members
- Extension Methods
Properties
Errors
Gets or sets the list of file paths that could not be downloaded from the code session or could not be added to the FoundationaLLM file store once they were downloaded.
[JsonPropertyName("errors")]
public List<string> Errors { get; set; }
Property Value
FileRecords
Gets or sets the dictionary containing the file identifiers and associated file records for each file that was successfully downloaded.
[JsonPropertyName("file_records")]
public Dictionary<string, ContextFileRecord> FileRecords { get; set; }