amkyawdev's picture
Upload full backend with updated settings - GROQ_MODEL=llama-3.1-8b-instant
14aad8e verified
Raw
History Blame Contribute Delete
274 Bytes
"""
Logger Configuration
"""
import logging
import sys
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
handlers=[
logging.StreamHandler(sys.stdout)
]
)
logger = logging.getLogger("amkyawdev")