Class: Ollama::Commands::Generate
- Inherits:
-
Object
- Object
- Ollama::Commands::Generate
- Includes:
- DTO
- Defined in:
- lib/ollama/commands/generate.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
writeonly
Sets the attribute client.
-
#context ⇒ Object
readonly
Returns the value of attribute context.
-
#format ⇒ Object
readonly
Returns the value of attribute format.
-
#images ⇒ Object
readonly
Returns the value of attribute images.
-
#keep_alive ⇒ Object
readonly
Returns the value of attribute keep_alive.
-
#model ⇒ Object
readonly
Returns the value of attribute model.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#prompt ⇒ Object
readonly
Returns the value of attribute prompt.
-
#raw ⇒ Object
readonly
Returns the value of attribute raw.
-
#stream ⇒ Object
readonly
Returns the value of attribute stream.
-
#suffix ⇒ Object
readonly
Returns the value of attribute suffix.
-
#system ⇒ Object
readonly
Returns the value of attribute system.
-
#template ⇒ Object
readonly
Returns the value of attribute template.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(model:, prompt:, suffix: nil, images: nil, format: nil, options: nil, system: nil, template: nil, context: nil, stream: nil, raw: nil, keep_alive: nil) ⇒ Generate
constructor
A new instance of Generate.
- #perform(handler) ⇒ Object
Methods included from DTO
#as_array_of_hashes, #as_json, #empty?, #to_json
Constructor Details
#initialize(model:, prompt:, suffix: nil, images: nil, format: nil, options: nil, system: nil, template: nil, context: nil, stream: nil, raw: nil, keep_alive: nil) ⇒ Generate
Returns a new instance of Generate.
8 9 10 11 |
# File 'lib/ollama/commands/generate.rb', line 8 def initialize(model:, prompt:, suffix: nil, images: nil, format: nil, options: nil, system: nil, template: nil, context: nil, stream: nil, raw: nil, keep_alive: nil) @model, @prompt, @suffix, @images, @format, @options, @system, @template, @context, @stream, @raw, @keep_alive = model, prompt, suffix, (Array(images) if images), format, , system, template, context, stream, raw, keep_alive end |
Instance Attribute Details
#client=(value) ⇒ Object (writeonly)
Sets the attribute client
16 17 18 |
# File 'lib/ollama/commands/generate.rb', line 16 def client=(value) @client = value end |
#context ⇒ Object (readonly)
Returns the value of attribute context.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def context @context end |
#format ⇒ Object (readonly)
Returns the value of attribute format.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def format @format end |
#images ⇒ Object (readonly)
Returns the value of attribute images.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def images @images end |
#keep_alive ⇒ Object (readonly)
Returns the value of attribute keep_alive.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def keep_alive @keep_alive end |
#model ⇒ Object (readonly)
Returns the value of attribute model.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def model @model end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def @options end |
#prompt ⇒ Object (readonly)
Returns the value of attribute prompt.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def prompt @prompt end |
#raw ⇒ Object (readonly)
Returns the value of attribute raw.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def raw @raw end |
#stream ⇒ Object (readonly)
Returns the value of attribute stream.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def stream @stream end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def suffix @suffix end |
#system ⇒ Object (readonly)
Returns the value of attribute system.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def system @system end |
#template ⇒ Object (readonly)
Returns the value of attribute template.
13 14 15 |
# File 'lib/ollama/commands/generate.rb', line 13 def template @template end |
Class Method Details
.path ⇒ Object
4 5 6 |
# File 'lib/ollama/commands/generate.rb', line 4 def self.path '/api/generate' end |
Instance Method Details
#perform(handler) ⇒ Object
18 19 20 |
# File 'lib/ollama/commands/generate.rb', line 18 def perform(handler) @client.request(method: :post, path: self.class.path, body: to_json, stream:, handler:) end |