aider/aider/litellm.py
2024-05-19 07:56:13 -07:00

13 lines
274 B
Python

import os
import warnings
warnings.filterwarnings("ignore", category=UserWarning, module="pydantic")
os.environ["OR_SITE_URL"] = "http://aider.chat"
os.environ["OR_APP_NAME"] = "Aider"
import litellm # noqa: E402
litellm.suppress_debug_info = True
__all__ = [litellm]