Metadata-Version: 2.1
Name: condy
Version: 0.2.0
Summary: A library to get embeddings from a specific API
Home-page: https://github.com/yourusername/condy
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# Condy

Condy is a Python library that provides easy access to embeddings from a specific API.

## Installation

You can install Condy using pip:

```
pip install condy
```

## Usage

Here's a simple example of how to use Condy:

```python
from condy import get_embeddings

text = "Hello, world!"
embeddings = get_embeddings(text)
print(embeddings)
```
