Metadata-Version: 2.1
Name: vantage-sdk
Version: 0.7.0
Summary: Vantage Python SDK.
Home-page: https://github.com/VantageDiscovery/vantage-sdk-python
Author: Vantage
Author-email: none@vantage.com
Requires-Python: >=3.10,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides-Extra: dev
Provides-Extra: doc
Provides-Extra: test
Requires-Dist: black (>=23.0,<24.0) ; extra == "test"
Requires-Dist: bump2version (>=1.0.1,<2.0.0) ; extra == "dev"
Requires-Dist: bumpver (>=2023.1129) ; extra == "dev"
Requires-Dist: flake8 (>=5.0.1,<6.0.0) ; extra == "test"
Requires-Dist: flake8-docstrings (>=1.6.0,<2.0.0) ; extra == "test"
Requires-Dist: flake8-pyproject (>=1.2.3,<2.0.0) ; extra == "test"
Requires-Dist: isort (>=5.8.0,<6.0.0) ; extra == "test"
Requires-Dist: mkdocs (>=1.5.3,<2.0.0) ; extra == "doc"
Requires-Dist: mkdocs-include-markdown-plugin (>=4.0.0,<5.0.0) ; extra == "doc"
Requires-Dist: mkdocs-material (>=9.5.3,<10.0.0) ; extra == "doc"
Requires-Dist: mypy (>=1.5,<2.0) ; extra == "test"
Requires-Dist: pip ; extra == "dev"
Requires-Dist: pip-tools (>=7.3.0) ; extra == "dev"
Requires-Dist: pre-commit (>=3.3.0,<4.0.0) ; extra == "dev"
Requires-Dist: pydantic (>=2)
Requires-Dist: pytest (>=7.2.0,<8.0.0) ; extra == "test"
Requires-Dist: pytest-cov (>=4.0.0,<5.0.0) ; extra == "test"
Requires-Dist: pytest-env (>=1.1.3) ; extra == "test"
Requires-Dist: python-dateutil (>=2,<3)
Requires-Dist: python-dotenv (>=1.0.1) ; extra == "dev"
Requires-Dist: requests (>=2,<3)
Requires-Dist: toml (>=0.10.2,<0.11.0) ; extra == "dev"
Requires-Dist: tox (>=4.0.0,<5.0.0) ; extra == "dev"
Requires-Dist: twine (>=4.0.2,<5.0.0) ; extra == "dev"
Requires-Dist: urllib3 (>=2,<3)
Requires-Dist: virtualenv (>=20.2.2,<21.0.0) ; extra == "dev"
Project-URL: Documentation, https://docs.vantagediscovery.com/docs/concepts
Project-URL: Repository, https://github.com/VantageDiscovery/vantage-sdk-python
Description-Content-Type: text/markdown

<img src="assets/vantage_logo.png" title="Vantage Discovery Logo" width="300"/></br>

# Vantage Discovery Python SDK

The Vantage Discovery Python SDK provides an easy-to-use interface to interact with the Vantage vector database, enabling developers to seamlessly integrate vector search and collection management capabilities into their Python applications.

## Installation

To install the Vantage Python SDK, run the following command:

```bash
pip install vantage-sdk
```

## Quickstart

To get started with the Vantage Python SDK, you'll need to set up your [Vantage account](https://console.vanta.ge/) and obtain your account ID and Vantage API key. Once you have your ID and key, you can initialize the VantageClient which you can then use to manage your account, collections and keys and perform searches.

```python
from vantage_sdk import VantageClient

# Initialize the VantageClient with your Vantage API key and Account ID
vantage_client = VantageClient.using_vantage_api_key(
    vantage_api_key='YOUR_VANTAGE_API_KEY',
    account_id='YOUR_ACCOUNT_ID'
)

# Now you can use the client to manage collections, documents, and perform searches
```

## Overview

The Vantage Discovery Python SDK is divided into several modules, allowing you to manage account, collections, and API keys, as well as perform various types of searches.

#### Key Features
- __Collection Management__: Easily create, update, list, and delete collections.
- __Documents Upload__: Upload your data easily to your collections.
- __Search__: Perform semantic, embedding and "more like this/these" searches within your collections.
- __LLM Keys Management__: Keep your LLM provider secrets safe and up-to-date.

## Examples

### Creating a Collection

```python
collection = vantage_client.create_collection(
    collection_id="my_collection",
    collection_name="My Test Collection",
    embeddings_dimension=1536,
    llm="text-embedding-ada-002",
    external_key_id="YOUR_EXTERNAL_KEY_ID" # Get from Vantage Console UI or using the SDK
)
print(f"Created collection: {collection.name}")
```

### Uploading Documents
```python
documents_jsonl = '{"id": "1", "text": "Example text"}\\n{"id": "2", "text": "Another example"}'
vantage_client.upload_documents_from_jsonl(
    collection_id="my_collection",
    documents=documents_jsonl
)
```

### Performing a Search
```python
search_result = vantage_client.semantic_search(
    text="Find documents similar to this text",
    collection_id="my_collection"
)
for result in search_result.results:
    print(result.id, result.score)
```

## Documentation

For detailed documentation on all methods and their parameters, please refer to the [Vantage Discovery official documentation](https://docs.vantagediscovery.com/docs/concepts).

