Class: Layered::Assistant::TokenEstimator
- Inherits:
-
Object
- Object
- Layered::Assistant::TokenEstimator
- 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 |