Async::OllamaSourceAsyncOllamaGenerate

class Generate

Represents a generated response from the Ollama API.

Definitions

def response

Signature

returns String | nil

The generated response, or nil if not present.

Implementation

def response
	self.value[:response]
end

def model

Signature

returns String

The model name used to generate the response.

Implementation

def model
	self.value[:model]
end