Package: @hexos/common

Available OpenAI model identifiers for use with LLMProvider.OpenAI.

These values map directly to the OpenAI API model parameter. Select a model based on capability and cost tradeoffs for your use case.

enum OpenAIModel {
    GPT4o = 'gpt-4o'
    GPT4oMini = 'gpt-4o-mini'
    GPT4Turbo = 'gpt-4-turbo'
    GPT4 = 'gpt-4'
    GPT35Turbo = 'gpt-3.5-turbo'
}