github weaviate/weaviate 0.18.1
0.18.1 - Combine Vector and Structured Search

latest releases: v1.25.2, v1.24.15, v1.23.16...
4 years ago

Docker image/tag: semitechnologies/weaviate:0.18.1

New Features

  • Combined Vector and Structured Search (#911)
    Previously in 0.17.0 Vector Search was added as a new feature set. As opposed to the initial realease it is now possible to combine the explore argument with a where argument in a Get retrieval. This allows for using the vector-based exploration queries to rank the results, yet filter them by exact strings, keywords or even geo-spatial data.

    For an example query see the following:

    {
      Get {
        Things {
          Company(
            explore: {concepts: ["phone"]}, 
            limit: 20, 
            where: {
              valueString: "Information Technology", 
              operator: Equal, 
              path: ["sector"]
            }) {
            name
            sector
            subIndustry
          }
        }
      }
    }

    This query explores the concept "phone" through all Companies, however it only includes results where the sector fields matches "Information Technology" precisely.

Don't miss a new weaviate release

NewReleases is sending notifications on new releases.