mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
14 lines
302 B
Python
14 lines
302 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
|
|
litellm.set_verbose = False
|
|
|
|
__all__ = [litellm]
|