Metadata-Version: 2.1
Name: ai-characters
Version: 0.2
Summary: Client for AI Characters
Home-page: UNKNOWN
Author: Viacheslav Kovalevskyi
Author-email: viacheslav@kovalevskyi.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: google-cloud-storage (==2.16)
Requires-Dist: jsonschema (==4.21)

# YourPackageName

AICharacters (AIC) is a Python client library for service AICharacters that stores different AI characters, mostly tailored for use with Crew AI. It includes functionality to download character configurations from the service, validate them against a predefined schema, and utilize these characters in various contexts.

## Features

- Download AI character configurations.
- Validate AI character JSON data against a schema.
- Deserialize AI character data into Python objects for easy manipulation.

## Installation

To install AIC, simply use pip:

```bash
pip install ai-characters
```

## Usage

Here is a basic example of how to use aic:

```python
from aic import load_character

character_id = "datetime"

character = load_character(character_id)

print(character.backstory)
```




