-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make embeddings optional in weaviate component #791
Make embeddings optional in weaviate component #791
Conversation
type: array | ||
items: | ||
type: float32 | ||
additionalProperties: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To accomodate for the fact that we now want to accept optional embedding we had to make this change. For the end user, it's now not very clear what the component can accept or how it behaves unless they look at the source code or encounter an example where it's implemented. It's fine as a temporary solution but still a fan of implementing something as specified in this discussion
Curious to hear other takes on this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree that we should still add this in the future. For now, you can document this in the description. It supports markdown.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
type: array | ||
items: | ||
type: float32 | ||
additionalProperties: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree that we should still add this in the future. For now, you can document this in the description. It supports markdown.
Fixes Make embedding optional#69