mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
13 lines
274 B
Python
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]
|