OpenAIProvider.OpenAILargeLanguageModel Enumeration
In This Topic
Specifies an OpenAI large language model.
Syntax
'Declaration
Public Enum OpenAIProvider.OpenAILargeLanguageModel
Inherits System.Enum
public enum OpenAIProvider.OpenAILargeLanguageModel : System.Enum
public enum class OpenAIProvider.OpenAILargeLanguageModel : public System.Enum
Members
Member | Value | Description |
Gpt35Turbo | 0 |
Turbo is the same model family that powers ChatGPT. It is optimized for conversational chat input and output but does equally well on completions when compared with the Davinci model family. Any use case that can be done well in ChatGPT should perform well with the Turbo model family in the API.
|
Gpt35Turbo16K | 1 |
Same capabilities as the standard gpt-3.5-turbo model but with 4 times the context.
|
Gpt4 | 2 |
More capable than any GPT-3.5 model, able to do more complex tasks, and optimized for chat. Will be updated with our latest model iteration.
8,192 tokens.
|
Gpt432K | 3 |
Same capabilities as the base gpt-4 mode but with 4x the context length. Will be updated with our latest model iteration.
32,768 tokens.
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
XTractFlow.API.LLM.Providers.OpenAIProvider.OpenAILargeLanguageModel
See Also