aider/aider/litellm.py
2024-05-08 08:09:23 -07:00

11 lines
238 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
__all__ = [litellm]