class Ollama::Utils::ColorizeTexts

def initialize(*texts)

Returns:
  • (Ollama::Utils::ColorizeTexts) - an instance of Ollama::Utils::ColorizeTexts

Parameters:
  • texts (Array) -- the array of strings to be displayed with colors
def initialize(*texts)
  texts  = texts.map(&:to_a)
  @texts = Array(texts.flatten)
end