Class CodeSessionCodeExecuteResponse
- Namespace
- FoundationaLLM.Common.Models.CodeExecution
- Assembly
- FoundationaLLM.Common.dll
Provides the result of executing code in a code session.
public class CodeSessionCodeExecuteResponse
- Inheritance
-
CodeSessionCodeExecuteResponse
- Inherited Members
- Extension Methods
Properties
ExecutionResult
Gets or sets the result produced by the code that was executed.
[JsonPropertyName("execution_result")]
public required string ExecutionResult { get; set; }
Property Value
StandardError
Gets or sets the standard error from the code execution.
[JsonPropertyName("error_output")]
public required string StandardError { get; set; }
Property Value
StandardOutput
Gets or sets the standard output from the code execution.
[JsonPropertyName("standard_output")]
public required string StandardOutput { get; set; }
Property Value
Status
Gets or sets the status of the code execution.
[JsonPropertyName("status")]
public required string Status { get; set; }