style: Apply linter formatting to models.py

This commit is contained in:
Paul Gauthier (aider) 2025-02-04 16:10:56 -08:00
parent ff1230c3ae
commit b9f4f3f71c

View file

@ -492,7 +492,7 @@ class Model(ModelSettings):
model = self.name
pieces = model.split('/')
pieces = model.split("/")
if len(pieces) > 1:
provider = pieces[0]
else:
@ -504,7 +504,7 @@ class Model(ModelSettings):
deepseek="DEEPSEEK_API_KEY",
gemini="GEMINI_API_KEY",
anthropic="ANTHROPIC_API_KEY",
groq = "GROQ_API_KEY"
groq="GROQ_API_KEY",
)
var = None
if model in OPENAI_MODELS: