mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 03:35:00 +00:00
11 lines
238 B
Python
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]
|