Table of Contents

Class CreateCodeSessionRequest

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

Represents a request to create a code session.

public class CreateCodeSessionRequest
Inheritance
CreateCodeSessionRequest
Inherited Members
Extension Methods

Properties

AgentName

Gets or sets the name of the agent for which the code session is created.

[JsonPropertyName("agent_name")]
public required string AgentName { get; set; }

Property Value

string

Context

Gets or sets the context in which the code session is created.

[JsonPropertyName("context")]
public required string Context { get; set; }

Property Value

string

ConversationId

Gets or sets the unique identifier of the conversation.

[JsonPropertyName("conversation_id")]
public required string ConversationId { get; set; }

Property Value

string

EndpointProvider

Gets or sets the name of the code session provider.

[JsonPropertyName("endpoint_provider")]
public required string EndpointProvider { get; set; }

Property Value

string

Language

Gets or sets the language of the code session.

[JsonPropertyName("language")]
public required string Language { get; set; }

Property Value

string