File size: 298 Bytes
d7fb055 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# AI Co-Scientist package initialization
__version__ = "0.1.0"
__author__ = "AI Co-Scientist Team"
# Import AICoScientist class after all dependencies are loaded
from .main import AICoScientist as _AICoScientist
# Export AICoScientist
AICoScientist = _AICoScientist
__all__ = ['AICoScientist']
|