class Document start:
| 9 | |
| 10 | //class Document start: |
| 11 | Document::Document(std::string text, std::vector<float> embeddings) : text_(std::move(text)), embeddings_(std::move(embeddings)) {} |
| 12 | |
| 13 | /** |
| 14 | * Construct a Document object from a json object. |
nothing calls this directly
no test coverage detected