Metadata-Version: 2.4
Name: cognee-community-vector-adapter-pinecone
Version: 0.1.0
Summary: Pinecone vector database adapter for cognee
Requires-Python: <=3.13,>=3.11
Requires-Dist: cognee==0.5.2
Requires-Dist: instructor>=1.11
Requires-Dist: pinecone>=3.0.0
Requires-Dist: starlette>=0.48.0
Description-Content-Type: text/markdown

# Cognee Pinecone Adapter

## Installation

If published, the package can be simply installed via pip:

```bash
pip install cognee-community-vector-adapter-pinecone
```

In case it is not published yet, you can use poetry to locally build the adapter package:

```bash
pip install poetry
poetry install # run this command in the directory containing the pyproject.toml file
```

## Connection Setup

To use the Pinecone adapter, you need to:

1. Sign up for a Pinecone account at https://www.pinecone.io/
2. Create a new project and get your API key
3. Note your environment details (cloud provider and region)

## Usage

Import and register the adapter in your code:

```python
from cognee_community_vector_adapter_pinecone import register
```

## Example

See example in `example.py` file.
