Paul Gauthier
32d025bcf2
r1 leaderboard
2025-01-20 11:37:09 -08:00
Paul Gauthier
61ab5d1652
disable sanity check
2025-01-20 11:35:54 -08:00
Paul Gauthier
f5fd6833e2
copy
2025-01-20 11:30:21 -08:00
Paul Gauthier
163e6f56df
re-enable summaries
2025-01-20 11:26:19 -08:00
Paul Gauthier
5650697475
no turn errors, with upd_cur_msgs fix and summarizer disabled
2025-01-20 11:10:43 -08:00
Paul Gauthier
2968087d37
more deepseek config
2025-01-20 10:09:48 -08:00
Paul Gauthier
e7ec80f58a
Merge branch 'main' into deepseek-reasoner
2025-01-20 09:50:35 -08:00
Paul Gauthier
f0ba699463
copy
2025-01-20 09:49:48 -08:00
Paul Gauthier
06d5b14b86
sanity_check_messages
2025-01-20 09:43:01 -08:00
Paul Gauthier
dff544cd5d
refactor: Split summarize method and add model metadata handling
2025-01-20 09:38:45 -08:00
Paul Gauthier (aider)
73bc0f6258
style: Remove trailing whitespace in sendchat.py
2025-01-20 08:35:24 -08:00
Paul Gauthier (aider)
7e5e180000
feat: verify last non-system message is from user in sanity_check_messages
2025-01-20 08:35:21 -08:00
Paul Gauthier (aider)
fc431df2b4
style: Add blank lines for better readability in sendchat.py
2025-01-20 08:34:44 -08:00
Paul Gauthier (aider)
bb61be630a
feat: add message role validation function
2025-01-20 08:34:40 -08:00
Paul Gauthier
cdc9ec2854
refactor: Add comment for sanity_check_messages
function in sendchat.py
2025-01-20 08:34:38 -08:00
Paul Gauthier
21d3703b69
feat: Add deepseek-reasoner model settings and enable caching for deepseek-chat
2025-01-20 08:14:12 -08:00
Paul Walker
293c350fb7
Add tags.scm for Kotlin
2025-01-17 21:18:55 -05:00
Paul Gauthier
a777f336e1
chore: Update polyglot leaderboard test results and metadata
2025-01-17 13:37:02 -08:00
Paul Gauthier
5b6c186125
copy
2025-01-17 13:35:36 -08:00
Paul Gauthier
a06f4dfad6
copy
2025-01-16 10:30:14 -08:00
Paul Gauthier
b92df87400
publish
2025-01-16 09:03:09 -08:00
Paul Gauthier
8040a20f71
add uv article
2025-01-16 08:25:02 -08:00
Paul Gauthier
0e87854819
copy
2025-01-16 08:24:47 -08:00
Paul Gauthier
3bc6c641de
copy
2025-01-16 08:24:31 -08:00
Paul Gauthier
4abb6e17ba
Merge branch 'main' of github.com:Aider-AI/aider
2025-01-16 08:24:21 -08:00
paul-gauthier
620ae5cf1d
Merge pull request #2877 from golergka/docs/file-editing-troubleshooting-architect-mode
2025-01-15 15:55:10 -08:00
Max Yankov (aider)
590ee5a248
docs: Add architect mode section to edit errors troubleshooting guide
2025-01-15 20:50:53 -03:00
Paul Gauthier
2ec576e110
use examples_as_sys_msg=True for 4o models
2025-01-13 15:46:36 -08:00
Paul Gauthier
4251e976b3
copy
2025-01-13 14:28:34 -08:00
Paul Gauthier
d831e2f3a4
copy
2025-01-13 14:26:24 -08:00
Paul Gauthier
21f20417d6
copy
2025-01-13 11:39:22 -08:00
Paul Gauthier
e1c914d9bb
chore: Update polyglot leaderboard with new test results for Codestral 25.01
2025-01-13 11:21:34 -08:00
Paul Gauthier
4b03b0a93a
Merge branch 'main' of github.com:Aider-AI/aider
2025-01-13 11:18:31 -08:00
Paul Gauthier
bbcde55a9e
copy
2025-01-13 10:18:34 -08:00
paul-gauthier
939cb7958a
Merge pull request #2857 from titusz/improve-read-errors
...
refactor: Reorder exception handling in file reading method
2025-01-13 09:37:38 -08:00
Paul Gauthier (aider)
869f37cd89
style: Format code for better readability in io.py
2025-01-13 09:35:07 -08:00
Paul Gauthier (aider)
c22202585d
fix: validate line_endings parameter in InputOutput initialization
2025-01-13 09:35:01 -08:00
Titusz Pan
f28c912d5a
refactor: Reorder exception handling in file reading method
2025-01-13 18:29:04 +01:00
paul-gauthier
a0e56c5282
Merge pull request #2856 from titusz/configurable-line-endings
...
feat: Add line endings configuration option for file writing - fixes #1102
2025-01-13 09:26:57 -08:00
Paul Gauthier
de7da1e806
copy
2025-01-13 09:12:56 -08:00
Paul Gauthier
add2f6f669
copy
2025-01-13 09:00:21 -08:00
Paul Gauthier
b06e765e68
copy
2025-01-13 08:58:26 -08:00
Titusz Pan
c3952cb985
feat: Add line endings configuration option for file writing
2025-01-13 17:51:02 +01:00
xqyz
d5469a64d2
Handle new path creation
...
To handle cases where a path, a file, or both need to be created, you can enhance the `fname.touch()` code as follows:
```python
try:
# Create parent directories if they don't exist
fname.parent.mkdir(parents=True, exist_ok=True)
# Create the file
fname.touch()
all_matched_files.add(str(fname))
self.io.tool_output(f"Created file: {fname}")
except OSError as e:
self.io.tool_error(f"Error creating file {fname}: {e}")
```
This code ensures that any necessary parent directories are created before attempting to create the file itself.
2025-01-12 07:29:45 +00:00
Paul Gauthier
ac26fc6d5f
set version to 0.71.2.dev
2025-01-11 16:07:56 -08:00
Paul Gauthier
122088712d
version bump to 0.71.1
2025-01-11 16:06:25 -08:00
Paul Gauthier
9fb09ce14d
copy
2025-01-11 16:04:53 -08:00
Paul Gauthier (aider)
392fb21946
fix: ensure integer indices for list slicing in repomap.py
2025-01-11 15:49:58 -08:00
Paul Gauthier (aider)
4ece6d2a9b
fix: handle Text objects properly in io.py for Windows Unicode encoding
2025-01-11 15:40:24 -08:00
Paul Gauthier
5ada250a66
refactor: Add period to read-only file message in base_coder.py
2025-01-11 07:39:29 -08:00