Class: Layered::Assistant::TokenEstimator

Inherits:
Object
  • Object
show all
Defined in:
app/services/layered/assistant/token_estimator.rb

Class Method Summary collapse

Class Method Details

.estimate(text) ⇒ Object



4
5
6
7
8
# File 'app/services/layered/assistant/token_estimator.rb', line 4

def self.estimate(text)
  return nil if text.blank?

  OpenAI.rough_token_count(text)
end