Class: LlmCostTracker::Configuration::Ingestion

Inherits:
Section
  • Object
show all
Defined in:
lib/llm_cost_tracker/configuration/ingestion.rb

Constant Summary collapse

MODES =
%i[inline async].freeze

Instance Method Summary collapse

Methods inherited from Section

attributes, enum_attribute, #finalize!

Constructor Details

#initialize(owner) ⇒ Ingestion

Returns a new instance of Ingestion.



13
14
15
16
17
# File 'lib/llm_cost_tracker/configuration/ingestion.rb', line 13

def initialize(owner)
  super
  @pool_size = nil
  self.mode = :inline
end