getEncoderForModel static method

TiktokenEncoder getEncoderForModel(
  1. OpenAiModel model
)

Returns the tiktoken encoding used by a model.

Implementation

static TiktokenEncoder getEncoderForModel(OpenAiModel model) =>
    getEncoder(model.encoding);