Async::OllamaSourceAsyncOllamaModels

class Models

Represents the available models returned by the Ollama API.

Definitions

def names

Signature

returns Array(String)

The list of model names.

Implementation

def names
	self.value[:models].map {|model| model[:name]}
end