Table of Contents

Class FileProcessingTypes

Namespace
FoundationaLLM.Common.Constants.Context
Assembly
FoundationaLLM.Common.dll

Provides constants for the types of file processing.

public static class FileProcessingTypes
Inheritance
FileProcessingTypes
Inherited Members

Fields

All

All file processing types.

public static readonly ImmutableArray<string> All

Field Value

ImmutableArray<string>

CompletionRequestContext

The file's content must be used in the completion request context (it's content should be directly embedded into the completion request).

public const string CompletionRequestContext = "completion_request_context"

Field Value

string

ConversationDataPipeline

The file must be processed by a data pipeline in the context of a conversation.

public const string ConversationDataPipeline = "conversation_data_pipeline"

Field Value

string

None

The file requires no processing.

public const string None = "none"

Field Value

string