Sha256: 8517ca9989f0f1b38a2f0787eb0473134d9b515bf5f65b1c85e71eb189a40a52
Contents?: true
Size: 232 Bytes
Versions: 24
Compression:
Stored size: 232 Bytes
Contents
class Ollama::Handlers::Collector include Ollama::Handlers::Concern def initialize(output: $stdout) super @array = [] end def call(response) @array << response self end def result @array end end
Version data entries
24 entries across 24 versions & 1 rubygems