21 lines
526 B
Python
21 lines
526 B
Python
|
|
"""
|
||
|
|
Kaizen Agentic - AI agent development framework embracing continuous improvement.
|
||
|
|
|
||
|
|
This package provides tools and infrastructure for developing AI agents that
|
||
|
|
follow the kaizen philosophy of continuous improvement through measurement,
|
||
|
|
analysis, and refinement.
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "0.1.0"
|
||
|
|
__author__ = "Kaizen Agentic Team"
|
||
|
|
|
||
|
|
from .core import Agent, AgentConfig
|
||
|
|
from .optimization import OptimizationLoop, PerformanceMetrics
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Agent",
|
||
|
|
"AgentConfig",
|
||
|
|
"OptimizationLoop",
|
||
|
|
"PerformanceMetrics",
|
||
|
|
]
|