🔌Connection Configuration
Key Parameters
Usage Example
import pyenvector as ev
# Method 1: Connecting with the address parameter (Recommended)
# This is the most concise and common method.
ev.init_connect(
address="localhost:50050",
access_token="your-secret-token-if-needed"
)
# Method 2: Connecting by specifying host and port separately
ev.init_connect(
host="localhost",
port=50050,
access_token="your-secret-token-if-needed"
)Last updated

