Code Monkey home page Code Monkey logo

Comments (6)

JoanFM avatar JoanFM commented on May 27, 2024

Can u give an example of the Doc structure u plan to use and how u would interact with the Index?

from docarray.

vincetrep avatar vincetrep commented on May 27, 2024

Sure:

class SampleDoc(BaseDoc):
    allergies: Optional[List[str]] = []

This object should result into a text[] data type in the WeaviateDocumentIndex.

let's assume a value of ['glutenfree','peanutfree'] in the array.

Then I would be able to do a filter with ContainsAny or ContainsAll on that Field within my search or filter request to find all objects which contain all of the allergenfree terms:

            filter = {
                "path":["allergies"],
                "operator": "ContainsAll",
                "valueText": ['glutenfree','peanutfree']
            }

from docarray.

JoanFM avatar JoanFM commented on May 27, 2024

The point is right now that this type is cureently only handled as blob and cannot be filtered upon?

from docarray.

hsm207 avatar hsm207 commented on May 27, 2024

FWIW, after the initial release of the docarray-weaviate integration, weaviate has added support for nested objects, so they don't have to be stored as blobs anymore. However, they can't be filtered upon yet.

However, in @vincetrep example, the thing he wants to filter on is a list of texts, and this is already supported in weaviate's python client.

from docarray.

JoanFM avatar JoanFM commented on May 27, 2024

Hey @hsm207,

Is this change something easy to achieve?

from docarray.

hsm207 avatar hsm207 commented on May 27, 2024

hey @JoanFM

I don't think I'm in a position to give good estimates anymore. It's almost a year since I last worked on this and I'm not sure how the abstractions work anymore 🤣

maybe @JohannesMessner knows better?

from docarray.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.