From 42977230b100db4a0fec276a75d5fe8ec8bc8e17 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 6 Jul 2023 17:44:12 -0700 Subject: [PATCH] Mark gpt-4 as always_available to skip the availability check on startup --- aider/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/models.py b/aider/models.py index fdbb2d152..986bb778f 100644 --- a/aider/models.py +++ b/aider/models.py @@ -40,6 +40,7 @@ class Model: if tokens == 8: self.prompt_price = 0.03 self.completion_price = 0.06 + self.always_available = True elif tokens == 32: self.prompt_price = 0.06 self.completion_price = 0.12