career_conversation / src /__init__.py
Carbaz's picture
Refactor application structure: implement main entrypoint, initialize environment, and set up logging; add tools for user interaction and data handling
b594867
raw
history blame contribute delete
525 Bytes
"""Initialization module for the AI Career Digital Twin application."""
from logging import basicConfig, getLogger
from dotenv import load_dotenv
# Environment initialization.
load_dotenv(override=True)
# Setup the global logger.
LOG_STYLE = '{'
LOG_LEVEL = 'INFO'
LOG_FORMAT = ('{asctime} {levelname:<8} {processName}({process}) '
'{threadName} {name} {lineno} "{message}"')
basicConfig(level=LOG_LEVEL, style='{', format=LOG_FORMAT)
getLogger(__name__).info('INITIALIZED AI CAREER DIGITAL TWIN LOGGER')