diff --git a/bindings/python/bergamot.cpp b/bindings/python/bergamot.cpp index 8cb75fc0c..78473a5e2 100644 --- a/bindings/python/bergamot.cpp +++ b/bindings/python/bergamot.cpp @@ -172,6 +172,10 @@ PYBIND11_MODULE(_bergamot, m) { py::bind_vector>(m, "VectorString"); py::bind_vector>(m, "VectorResponse"); + py::bind_vector>(m, "VectorFloat"); + py::bind_vector(m, "Alignment"); + py::bind_vector(m, "Alignments"); + py::enum_(m, "ConcatStrategy") .value("FAITHFUL", ConcatStrategy::FAITHFUL) .value("SPACE", ConcatStrategy::SPACE)