Class: Ollama::Commands::Copy
- Inherits:
-
Object
- Object
- Ollama::Commands::Copy
- Includes:
- DTO
- Defined in:
- lib/ollama/commands/copy.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
writeonly
Sets the attribute client.
-
#destination ⇒ Object
readonly
Returns the value of attribute destination.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
-
#stream ⇒ Object
readonly
Returns the value of attribute stream.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(source:, destination:) ⇒ Copy
constructor
A new instance of Copy.
- #perform(handler) ⇒ Object
Methods included from DTO
#as_array_of_hashes, #as_json, #empty?, #to_json
Constructor Details
#initialize(source:, destination:) ⇒ Copy
Returns a new instance of Copy.
8 9 10 |
# File 'lib/ollama/commands/copy.rb', line 8 def initialize(source:, destination:) @source, @destination, @stream = source, destination, false end |
Instance Attribute Details
#client=(value) ⇒ Object (writeonly)
Sets the attribute client
14 15 16 |
# File 'lib/ollama/commands/copy.rb', line 14 def client=(value) @client = value end |
#destination ⇒ Object (readonly)
Returns the value of attribute destination.
12 13 14 |
# File 'lib/ollama/commands/copy.rb', line 12 def destination @destination end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
12 13 14 |
# File 'lib/ollama/commands/copy.rb', line 12 def source @source end |
#stream ⇒ Object (readonly)
Returns the value of attribute stream.
12 13 14 |
# File 'lib/ollama/commands/copy.rb', line 12 def stream @stream end |
Class Method Details
.path ⇒ Object
4 5 6 |
# File 'lib/ollama/commands/copy.rb', line 4 def self.path '/api/copy' end |
Instance Method Details
#perform(handler) ⇒ Object
16 17 18 |
# File 'lib/ollama/commands/copy.rb', line 16 def perform(handler) @client.request(method: :post, path: self.class.path, body: to_json, stream:, handler:) end |