added aider.litellm

This commit is contained in:
Paul Gauthier 2024-05-08 08:09:23 -07:00
parent 9ff6770a04
commit 44024c001d
2 changed files with 13 additions and 2 deletions

11
aider/litellm.py Normal file
View file

@ -0,0 +1,11 @@
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]