Skip to content
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

V1.12.0 #85

Merged
merged 6 commits into from
Oct 8, 2024
Merged

V1.12.0 #85

merged 6 commits into from
Oct 8, 2024

Conversation

IvanPleshkov
Copy link
Contributor

@IvanPleshkov IvanPleshkov commented Oct 4, 2024

Qdrant v1.12 API updates

New APIs examples

import { QdrantClient } from "@qdrant/js-client-rest";

const client = new QdrantClient({ host: "localhost", port: 6333 });

client.searchMatrixOffsets("{collection_name}", {
    filter: {
        must: [
            {
                key: "foo",
                match: {
                    value: "hello",
                },
            },
        ],
    },
    sample: 3,
    limit: 2,
});
import { QdrantClient } from "@qdrant/js-client-rest";

const client = new QdrantClient({ host: "localhost", port: 6333 });

client.searchMatrixPairs("{collection_name}", {
    filter: {
        must: [
            {
                key: "foo",
                match: {
                    value: "hello",
                },
            },
        ],
    },
    sample: 3,
    limit: 2,
});
import { QdrantClient } from "@qdrant/js-client-rest";

const client = new QdrantClient({ host: "localhost", port: 6333 });

client.facet("{collection_name}", {
    filter: {
        must: [
            {
                key: "bar",
                match: {
                    value: "hello",
                },
            },
        ],
    },
    key: "foo",
    limit: 2,
});

TODO

  • bump version after container release

@IvanPleshkov IvanPleshkov merged commit c45d94b into master Oct 8, 2024
6 checks passed
@IvanPleshkov IvanPleshkov deleted the V1.12.0 branch October 8, 2024 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants