This commit is contained in:
Paul Gauthier 2024-12-22 09:02:01 -05:00
parent fff67a5917
commit 7b37bf0f48
6 changed files with 808 additions and 743 deletions

View file

@ -2,11 +2,12 @@
### main branch
- Support for o1 models.
- Full support for o1 models.
- Support for running without git installed.
- Show hints about AI! and AI? when user makes AI comments.
- Ask 10% of users to opt-in to analytics.
- Aider wrote 70% of the code in this release.
- Improved environment variable setup messages on Windows.
- Aider wrote 75% of the code in this release.
### Aider v0.69.0

View file

@ -25,10 +25,12 @@ cog.out(text)
### main branch
- Full support for o1 models.
- Support for running without git installed.
- Show hints about AI! and AI? when user makes AI comments.
- Ask 10% of users to opt-in to analytics.
- Aider wrote 70% of the code in this release.
- Improved environment variable setup messages on Windows.
- Aider wrote 75% of the code in this release.
### Aider v0.69.0

File diff suppressed because it is too large Load diff

View file

@ -1163,6 +1163,22 @@ cog.out("```\n")
use_system_prompt: true
use_temperature: true
weak_model_name: null
- cache_control: false
caches_by_default: false
edit_format: diff
editor_edit_format: null
editor_model_name: null
examples_as_sys_msg: true
extra_params: null
lazy: false
name: openrouter/deepseek/deepseek-chat
reminder: sys
send_undo_reply: false
streaming: true
use_repo_map: true
use_system_prompt: true
use_temperature: true
weak_model_name: null
- cache_control: false
caches_by_default: false
edit_format: diff
@ -1307,6 +1323,54 @@ cog.out("```\n")
use_system_prompt: false
use_temperature: false
weak_model_name: openrouter/openai/gpt-4o-mini
- cache_control: false
caches_by_default: false
edit_format: diff
editor_edit_format: editor-diff
editor_model_name: openrouter/openai/gpt-4o
examples_as_sys_msg: false
extra_params: null
lazy: false
name: openrouter/openai/o1
reminder: user
send_undo_reply: false
streaming: false
use_repo_map: true
use_system_prompt: true
use_temperature: false
weak_model_name: openrouter/openai/gpt-4o-mini
- cache_control: false
caches_by_default: false
edit_format: diff
editor_edit_format: editor-diff
editor_model_name: openai/gpt-4o
examples_as_sys_msg: false
extra_params: null
lazy: false
name: openai/o1
reminder: user
send_undo_reply: false
streaming: false
use_repo_map: true
use_system_prompt: true
use_temperature: false
weak_model_name: openai/gpt-4o-mini
- cache_control: false
caches_by_default: false
edit_format: diff
editor_edit_format: editor-diff
editor_model_name: gpt-4o
examples_as_sys_msg: false
extra_params: null
lazy: false
name: o1
reminder: user
send_undo_reply: false
streaming: false
use_repo_map: true
use_system_prompt: true
use_temperature: false
weak_model_name: gpt-4o-mini
- cache_control: false
caches_by_default: false
edit_format: diff

View file

@ -237,13 +237,11 @@ tr:hover { background-color: #f5f5f5; }
</style>
<table>
<tr><th>Model Name</th><th class='right'>Total Tokens</th><th class='right'>Percent</th></tr>
<tr><td>claude-3-5-sonnet-20241022</td><td class='right'>1,684,670</td><td class='right'>87.7%</td></tr>
<tr><td>o1-preview</td><td class='right'>117,312</td><td class='right'>6.1%</td></tr>
<tr><td>gemini/REDACTED</td><td class='right'>82,572</td><td class='right'>4.3%</td></tr>
<tr><td>deepseek/deepseek-coder</td><td class='right'>24,628</td><td class='right'>1.3%</td></tr>
<tr><td>gpt-4o</td><td class='right'>9,243</td><td class='right'>0.5%</td></tr>
<tr><td>gpt-4o-mini</td><td class='right'>1,992</td><td class='right'>0.1%</td></tr>
<tr><td>mistral/REDACTED</td><td class='right'>620</td><td class='right'>0.0%</td></tr>
<tr><td>claude-3-5-sonnet-20241022</td><td class='right'>1,887,199</td><td class='right'>98.0%</td></tr>
<tr><td>o1-preview</td><td class='right'>33,530</td><td class='right'>1.7%</td></tr>
<tr><td>gpt-4o</td><td class='right'>4,273</td><td class='right'>0.2%</td></tr>
<tr><td>openrouter/REDACTED</td><td class='right'>1,234</td><td class='right'>0.1%</td></tr>
<tr><td>openai/gpt-4o-mini</td><td class='right'>141</td><td class='right'>0.0%</td></tr>
</table>
{: .note :}

View file

@ -119,6 +119,6 @@ mod_dates = [get_last_modified_date(file) for file in files]
latest_mod_date = max(mod_dates)
cog.out(f"{latest_mod_date.strftime('%B %d, %Y.')}")
]]]-->
December 16, 2024.
December 22, 2024.
<!--[[[end]]]-->
</p>