Skip to main content

Pinecone compatiable client for Lantern

Project description

Lantern client compatible with Pinecone API

Install

pip install lantern-pinecone

Sync from Pinecone to Lantern

import lantern_pinecone
from getpass import getpass

lantern_pinecone.init('postgres://postgres@localhost:5432')

pinecone_ids = list(map(lambda x: str(x), range(100000)))

index = lantern_pinecone.create_from_pinecone(
        api_key=getpass("Pinecone API Key"),
        environment="us-east-1-aws",
        index_name="sift100k",
        namespace="",
        pinecone_ids=pinecone_ids,
        recreate=True,
        create_lantern_index=True)

index.describe_index_stats()

index.query(top_k=10, id='45500', namespace="")

NOTE: If you pass create_lantern_index=False only data will be copied under the table of your index name (in this example sift100k) and you can create an index later externally. Without the index most of the index operations will not be accessible via this client.

Extract Metadata Fields

When copying from Pinecone we create a table in this structure: sql (id TEXT, embedding REAL[], metadata jsonb) If you are planning to use the index with raw sql clients, you may want to extract metadata into separate columns, so you could have more complex/nice looking queries over your metadata fields. So if our metadata has this shape { "title": string, "description": string }, we can extract it using this query:

BEGIN;
ALTER TABLE sift100k
ADD COLUMN title TEXT,
ADD COLUMN description TEXT;

-- Update the new columns with data extracted from the JSONB column
UPDATE sift100k
SET
  title = metadata->>'title',
  description = metadata->>'description';


-- Optionally drop the metadata column
ALTER TABLE sift100k DROP COLUMN metadata;

COMMIT;

After doing this your index will most likely be uncomaptible with this python client, and you should use it via raw sql client like psycopg2

Index operations

import os
import lantern_pinecone
import pandas as pd

LANTERN_DB_URL = os.environ.get('LANTERN_DB_URL') or 'postgres://postgres@localhost:5432'
lantern_pinecone.init(LANTERN_DB_URL)

# Giving our index a name
index_name = "hello-lantern"

# Delete the index, if an index of the same name already exists
if index_name in lantern_pinecone.list_indexes():
    lantern_pinecone.delete_index(index_name)


import time

dimensions = 3
lantern_pinecone.create_index(name=index_name, dimension=dimensions, metric="cosine")
index = lantern_pinecone.Index(index_name=index_name)


df = pd.DataFrame(
    data={
        "id": ["A", "B"],
        "vector": [[1., 1., 1.], [1., 2., 3.]]
    })

# Insert vectors
index.upsert(vectors=zip(df.id, df.vector))

index.describe_index_stats()

index.query(
    vector=[2., 2., 2.],
    top_k=5,
    include_values=True) # returns top_k matches


lantern_pinecone.delete_index(index_name)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lantern-pinecone-0.0.7.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

lantern_pinecone-0.0.7-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file lantern-pinecone-0.0.7.tar.gz.

File metadata

  • Download URL: lantern-pinecone-0.0.7.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lantern-pinecone-0.0.7.tar.gz
Algorithm Hash digest
SHA256 5236c1e1dff527f396e0f2ab435e7988a3ddc2a81370538860387e2896ce0c1f
MD5 77bf3b9d2e291e2abe1896e5ec0ee23b
BLAKE2b-256 a07422ce3dac7efef976ed2a5458ed6b5ad170b08adbb48943d31a2079c9b207

See more details on using hashes here.

File details

Details for the file lantern_pinecone-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for lantern_pinecone-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 1399845c99d1953638a8c7e21f8497dfa62e4bcf49f7d4eef298ffe389efd13e
MD5 9953e7c198c66bfaf75424de3b8a383f
BLAKE2b-256 62913b35db18032d16a508b6357ed65686c606a6b9e8dcc7a031c32e0f8034bd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page