Skip to content

feat(weaviate) Initial Weaviate Vector Store Node for Langhcain #16443

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dudanogueira
Copy link

Summary

Rebase from #16300

Adding new Weaviate node for Langchain, by popular demand!

image

Related Linear tickets, Github issues, and Community forum posts

Review / Merge checklist

  • PR title and summary are descriptive. (conventions)
  • Docs updated or follow-up ticket created.
  • [] Tests included.
  • PR Labeled with release/backport (if the PR is an urgent fix that needs to be backported)

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cubic found 2 issues across 6 files. Review them in cubic.dev

React with 👍 or 👎 to teach cubic. Tag @cubic-dev-ai to give specific feedback.


export function parseCompositeFilter(filter: WeaviateCompositeFilter): unknown {
if ('AND' in filter) {
return Filters.and(...filter.AND.map(parseCompositeFilter));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

parseCompositeFilter expects a WeaviateCompositeFilter, but filter.AND contains WeaviateFilterUnit elements. Passing the wrong type causes a TypeScript compilation error.

Suggested change
return Filters.and(...filter.AND.map(parseCompositeFilter));
return Filters.and(...filter.AND.map(buildFilter));

@n8n-assistant n8n-assistant bot added community Authored by a community member in linear Issue or PR has been created in Linear for internal review labels Jun 17, 2025
@Joffcom
Copy link
Member

Joffcom commented Jun 17, 2025

Hey @dudanogueira,

Thanks for the PR, We have created "GHC-2609" as the internal reference to get this reviewed.

One of us will be in touch if there are any changes needed, in most cases this is normally within a couple of weeks but it depends on the current workload of the team.

@ShireenMissi ShireenMissi self-requested a review June 17, 2025 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community Authored by a community member in linear Issue or PR has been created in Linear for internal review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants