Skip to content

Commit 854c7c4

Browse files
committed
#8 - Update base_coder for flake8 in pipeline, run python tests in descending version order
1 parent 4437537 commit 854c7c4

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/check_pypi_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12"]
18+
python-version: ["3.12", "3.11", "3.10"]
1919

2020
steps:
2121
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/ubuntu-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python-version: ["3.10", "3.11", "3.12"]
28+
python-version: ["3.12", "3.11", "3.10"]
2929

3030
steps:
3131
- name: Check out repository

.github/workflows/windows-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: windows-latest
2626
strategy:
2727
matrix:
28-
python-version: ["3.10", "3.11", "3.12"]
28+
python-version: ["3.12", "3.11", "3.10"]
2929

3030
steps:
3131
- name: Check out repository

.github/workflows/windows_check_pypi_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12"]
18+
python-version: ["3.12", "3.11", "3.10"]
1919
defaults:
2020
run:
2121
shell: pwsh # Use PowerShell for all run steps

aider/coders/base_prompts.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,14 @@ class CoderPrompts:
7373
go_ahead_tip = ""
7474

7575
compaction_prompt = """You are an expert at summarizing conversations.
76-
The user is going to provide you with a conversation that is getting too long to fit in the context window of a language model.
76+
The user is going to provide you with a conversation.
77+
This conversation is getting too long to fit in the context window of a language model.
7778
You need to summarize the conversation to reduce its length, while retaining all the important information.
7879
7980
The summary should contain three parts:
8081
- Overall Goal: What is the user trying to achieve with this conversation?
81-
- Next Steps: What are the next steps for the language model to take to help the user? Create a checklist of what has been done and what is left to do.
82+
- Next Steps: What are the next steps for the language model to take to help the user?
83+
Create a checklist of what has been done and what is left to do.
8284
- Active files: What files are currently in the context window?
8385
8486
Here is the conversation so far:

0 commit comments

Comments
 (0)