CoolFace
Apppublic

aphilippov/python-server-api

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
__init__.py11 linesDownload Raw Back to autogen
1import logging2from .version import __version__3from .oai import *4from .agentchat import *5from .code_utils import DEFAULT_MODEL, FAST_MODEL6 7 8# Set the root logger.9logger = logging.getLogger(__name__)10logger.setLevel(logging.INFO)11