Class: Appwrite::Models::EmbeddingList
- Inherits:
-
Object
- Object
- Appwrite::Models::EmbeddingList
- Defined in:
- lib/appwrite/models/embedding_list.rb
Instance Attribute Summary collapse
-
#embeddings ⇒ Object
readonly
Returns the value of attribute embeddings.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, embeddings:) ⇒ EmbeddingList
constructor
A new instance of EmbeddingList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, embeddings:) ⇒ EmbeddingList
Returns a new instance of EmbeddingList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/embedding_list.rb', line 9 def initialize( total:, embeddings: ) @total = total @embeddings = end |
Instance Attribute Details
#embeddings ⇒ Object (readonly)
Returns the value of attribute embeddings.
7 8 9 |
# File 'lib/appwrite/models/embedding_list.rb', line 7 def @embeddings end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/embedding_list.rb', line 6 def total @total end |
Class Method Details
.from(map:) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/appwrite/models/embedding_list.rb', line 17 def self.from(map:) EmbeddingList.new( total: map["total"], embeddings: map["embeddings"].map { |it| Embedding.from(map: it) } ) end |
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/embedding_list.rb', line 24 def to_map { "total": @total, "embeddings": @embeddings.map { |it| it.to_map } } end |