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
Context
Gets or sets the context in which the code session is created.
[JsonPropertyName("context")]
public required string Context { get; set; }
Property Value
ConversationId
Gets or sets the unique identifier of the conversation.
[JsonPropertyName("conversation_id")]
public required string ConversationId { get; set; }
Property Value
EndpointProvider
Gets or sets the name of the code session provider.
[JsonPropertyName("endpoint_provider")]
public required string EndpointProvider { get; set; }
Property Value
Language
Gets or sets the language of the code session.
[JsonPropertyName("language")]
public required string Language { get; set; }