Table of Contents

Class CodeExecutionResponse

Namespace
FoundationaLLM.CSharpCodeSession.API.Models
Assembly
FoundationaLLM.CSharpCodeSession.API.dll

Represents the response from executing code.

public class CodeExecutionResponse
Inheritance
CodeExecutionResponse
Inherited Members
Extension Methods

Properties

Output

Gets or sets the output of the code execution.

[JsonPropertyName("output")]
public required string Output { get; set; }

Property Value

string

Results

Gets or sets the results of the code execution.

[JsonPropertyName("results")]
public required object Results { get; set; }

Property Value

object