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:
pip install ai-characters
Usage
Here is a basic example of how to use aic:
from aic import load_character
character_id = "datetime"
character = load_character(character_id)
print(character.backstory)