mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
feat: Add ⚡ symbol to announcement if prompt caching is enabled and supported
This commit is contained in:
parent
ded270ee8b
commit
4d36518de0
1 changed files with 2 additions and 0 deletions
|
@ -209,6 +209,8 @@ class Coder:
|
|||
output = f" {main_model.name} with"
|
||||
if main_model.info.get("supports_assistant_prefill"):
|
||||
output += " ♾️"
|
||||
if main_model.cache_control and self.cache_prompts:
|
||||
output += " ⚡"
|
||||
output += f" {self.edit_format} edit format"
|
||||
if weak_model is not main_model:
|
||||
prefix = "Models:"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue