File size: 358 Bytes
6ff1f88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
Core package for the AI Text Generation API.

This package contains the core functionality of the API:
- Configuration management
- Key management
- Text generation
- Error handling
"""

from core.config import *
from core.exceptions import *
from core.key_manager import key_manager
from core.text_generation import text_generator

__version__ = "1.0.0"