Core library for the ai-kit toolkit.
This package provides core functionality and utilities used across the ai-kit ecosystem.
This package is part of the ai-kit monorepo and is managed by uv workspaces.
# Run tests
just test
# Run linting
just lint
# Format code
just formatfrom ai_kit_core import hello
# Basic usage
message = hello("World")
print(message) # Output: Hello, World!