Metadata-Version: 2.1
Name: envelope-ai
Version: 0.0.7
Summary: SDK for envelope DB
Project-URL: Homepage, https://github.com/envelope-ai/wayfarer
Project-URL: Bug Tracker, https://github.com/envelope-ai/wayfarer/issues
Author-email: "envelope.ai" <support@envelope.ai>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: requests~=2.28
Requires-Dist: validators~=0.20
Description-Content-Type: text/markdown

# Envelope AI SDK (wayfarer)

## Installation

`pip install envelope-ai`

## Quickstart

After you have a API key and a collection created on your envelope account

```python
from wayfarer.wayfarer import Wayfarer

client = Wayfarer(api_key="<your-api-key-here>")

documents = {
    "embeddings": [1.0, 0, 0.8],
    "metadata": {label: "0"},
}

client.insert(documents=documents, collection_name="<your-collection-name>")  # You might prefer to use collection_id here instead

```

