Method: Langchain::LLM::Base#complete

Defined in:
lib/langchain/llm/base.rb

#completeObject

Generate a completion for a given prompt. Parameters will depend on the LLM.

Raises:

  • NotImplementedError if not supported by the LLM

[View source]

56
57
58
# File 'lib/langchain/llm/base.rb', line 56

def complete(...)
  raise NotImplementedError, "#{self.class.name} does not support completion"
end