Module: LlmMemory::Loader

Included in:
FileLoader
Defined in:
lib/llm_memory/loader.rb

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



4
5
6
# File 'lib/llm_memory/loader.rb', line 4

def self.included(base)
  base.extend(ClassMethods)
end

Instance Method Details

#loadObject

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/llm_memory/loader.rb', line 14

def load
  raise NotImplementedError, "Each loader must implement the 'load' method."
end