Table of Contents

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

string

StandardError

Gets or sets the standard error from the code execution.

[JsonPropertyName("error_output")]
public required string StandardError { get; set; }

Property Value

string

StandardOutput

Gets or sets the standard output from the code execution.

[JsonPropertyName("standard_output")]
public required string StandardOutput { get; set; }

Property Value

string

Status

Gets or sets the status of the code execution.

[JsonPropertyName("status")]
public required string Status { get; set; }

Property Value

string