Class: Ollama::Utils::Tags

Inherits:
SortedSet
  • Object
show all
Defined in:
lib/ollama/utils/tags.rb

Instance Method Summary collapse

Instance Method Details

#to_aObject



5
6
7
# File 'lib/ollama/utils/tags.rb', line 5

def to_a
  super.map(&:to_s)
end

#to_sObject



9
10
11
# File 'lib/ollama/utils/tags.rb', line 9

def to_s
  map { |t| '#%s' % t } * ' '
end