Class: LlmCostTracker::Configuration::Ingestion
- Defined in:
- lib/llm_cost_tracker/configuration/ingestion.rb
Constant Summary collapse
- MODES =
%i[inline async].freeze
Instance Method Summary collapse
-
#initialize(owner) ⇒ Ingestion
constructor
A new instance of Ingestion.
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 |