Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.

Latest commit

 

History

History
34 lines (22 loc) · 488 Bytes

File metadata and controls

34 lines (22 loc) · 488 Bytes

ai-kit-core

Core library for the ai-kit toolkit.

Overview

This package provides core functionality and utilities used across the ai-kit ecosystem.

Installation

This package is part of the ai-kit monorepo and is managed by uv workspaces.

Development

# Run tests
just test

# Run linting
just lint

# Format code
just format

Usage

from ai_kit_core import hello

# Basic usage
message = hello("World")
print(message)  # Output: Hello, World!