refactor: Move RETRY_TIMEOUT constant to models.py

This commit is contained in:
Paul Gauthier (aider) 2025-02-04 11:45:40 -08:00
parent faa438bc51
commit 74da63e3ca
3 changed files with 3 additions and 4 deletions

View file

@ -18,11 +18,12 @@ from PIL import Image
from aider.dump import dump # noqa: F401
from aider.llm import litellm
from aider.sendchat import (
RETRY_TIMEOUT,
ensure_alternating_roles,
sanity_check_messages,
)
RETRY_TIMEOUT = 60
DEFAULT_MODEL_NAME = "gpt-4o"
ANTHROPIC_BETA_HEADER = "prompt-caching-2024-07-31,pdfs-2024-09-25"