github.com/weaviate/weaviate@v1.24.6/entities/models/c11y_vector.go (about) 1 // _ _ 2 // __ _____ __ ___ ___ __ _| |_ ___ 3 // \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ 4 // \ V V / __/ (_| |\ V /| | (_| | || __/ 5 // \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| 6 // 7 // Copyright © 2016 - 2024 Weaviate B.V. All rights reserved. 8 // 9 // CONTACT: hello@weaviate.io 10 // 11 12 // Code generated by go-swagger; DO NOT EDIT. 13 14 package models 15 16 // This file was generated by the swagger tool. 17 // Editing this file might prove futile when you re-run the swagger generate command 18 19 import ( 20 "context" 21 22 "github.com/go-openapi/strfmt" 23 ) 24 25 // C11yVector A Vector in the Contextionary 26 // 27 // swagger:model C11yVector 28 type C11yVector []float32 29 30 // Validate validates this c11y vector 31 func (m C11yVector) Validate(formats strfmt.Registry) error { 32 return nil 33 } 34 35 // ContextValidate validates this c11y vector based on context it is used 36 func (m C11yVector) ContextValidate(ctx context.Context, formats strfmt.Registry) error { 37 return nil 38 }