This commit is contained in:
Paul Gauthier 2025-01-27 09:29:49 -08:00
parent 3dec9e531f
commit 674dcba53c
5 changed files with 147 additions and 139 deletions

View file

@ -52,11 +52,14 @@ aider-install
# Change directory into your code base
cd /to/your/project
# Work with DeepSeek on your code
aider --model deepseek --api-key deepseek=your-key-goes-here
# Work with Claude 3.5 Sonnet on your code
aider --model sonnet --anthropic-api-key your-key-goes-here
aider --model sonnet --api-key anthropic=your-key-goes-here
# Work with GPT-4o on your code
aider --model gpt-4o --openai-api-key your-key-goes-here
aider --model gpt-4o --api-key openai=your-key-goes-here
```
<!--[[[end]]]-->

View file

@ -8,9 +8,12 @@ aider-install
# Change directory into your code base
cd /to/your/project
# Work with DeepSeek on your code
aider --model deepseek --api-key deepseek=your-key-goes-here
# Work with Claude 3.5 Sonnet on your code
aider --model sonnet --anthropic-api-key your-key-goes-here
aider --model sonnet --api-key anthropic=your-key-goes-here
# Work with GPT-4o on your code
aider --model gpt-4o --openai-api-key your-key-goes-here
aider --model gpt-4o --api-key openai=your-key-goes-here
```

File diff suppressed because one or more lines are too long

View file

@ -249,14 +249,13 @@ 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>deepseek/deepseek-chat</td><td class='right'>1,262,744</td><td class='right'>54.9%</td></tr>
<tr><td>claude-3-5-sonnet-20241022</td><td class='right'>670,009</td><td class='right'>29.1%</td></tr>
<tr><td>deepseek/REDACTED</td><td class='right'>308,841</td><td class='right'>13.4%</td></tr>
<tr><td>deepseek/deepseek-reasoner</td><td class='right'>22,989</td><td class='right'>1.0%</td></tr>
<tr><td>claude-3-5-haiku-20241022</td><td class='right'>10,083</td><td class='right'>0.4%</td></tr>
<tr><td>gemini/gemini-exp-1206</td><td class='right'>10,068</td><td class='right'>0.4%</td></tr>
<tr><td>mistral/codestral-latest</td><td class='right'>8,137</td><td class='right'>0.4%</td></tr>
<tr><td>o1</td><td class='right'>4,963</td><td class='right'>0.2%</td></tr>
<tr><td>deepseek/deepseek-chat</td><td class='right'>910,318</td><td class='right'>41.9%</td></tr>
<tr><td>claude-3-5-sonnet-20241022</td><td class='right'>887,826</td><td class='right'>40.9%</td></tr>
<tr><td>deepseek/REDACTED</td><td class='right'>308,841</td><td class='right'>14.2%</td></tr>
<tr><td>deepseek/deepseek-reasoner</td><td class='right'>40,597</td><td class='right'>1.9%</td></tr>
<tr><td>claude-3-5-haiku-20241022</td><td class='right'>10,083</td><td class='right'>0.5%</td></tr>
<tr><td>gemini/gemini-exp-1206</td><td class='right'>10,068</td><td class='right'>0.5%</td></tr>
<tr><td>o1</td><td class='right'>2,385</td><td class='right'>0.1%</td></tr>
<tr><td>gpt-4o</td><td class='right'>1,775</td><td class='right'>0.1%</td></tr>
<tr><td>o1-preview</td><td class='right'>175</td><td class='right'>0.0%</td></tr>
</table>

View file

@ -79,11 +79,14 @@ aider-install
# Change directory into your code base
cd /to/your/project
# Work with DeepSeek on your code
aider --model deepseek --api-key deepseek=your-key-goes-here
# Work with Claude 3.5 Sonnet on your code
aider --model sonnet --anthropic-api-key your-key-goes-here
aider --model sonnet --api-key anthropic=your-key-goes-here
# Work with GPT-4o on your code
aider --model gpt-4o --openai-api-key your-key-goes-here
aider --model gpt-4o --api-key openai=your-key-goes-here
```
<!-- NOOP -->