🔌Connecting to the Service
Initializing the Connection
Example
import pyenvector as ev
# Initialize the connection to a local enVector service
ev.init_connect(address="localhost:50050", access_token=None)Access Tokens
import os
import pyenvector as ev
token = os.environ.get("ENVECTOR_ACCESS_TOKEN") # or your configured token
ev.init_connect(address="api.envector.example:50050", access_token=token)Checking the Connection Status
Example
Last updated

