Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
- Fix vscode-material-icons in the filer picker
- Fix global settings export
- Respect user-configured terminal integration timeout (thanks @KJ7LNW)
- Contex condensing enhancements (thanks @SannidhyaSah)
- Context condensing enhancements (thanks @SannidhyaSah)

## [3.18.1] - 2025-05-22

Expand Down Expand Up @@ -895,7 +895,7 @@

## [3.10.1] - 2025-03-20

- Make the suggested responses optional to not break overriden system prompts
- Make the suggested responses optional to not break overridden system prompts

## [3.10.0] - 2025-03-20

Expand Down
2 changes: 1 addition & 1 deletion apps/vscode-e2e/src/suite/tools/apply-diff.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function validateInput(input) {
},
text: `Use apply_diff on the file ${testFile.name} to change "Hello World" to "Hello Universe". The file already exists with this content:
${testFile.content}\nAssume the file exists and you can modify it directly.`,
}) //Temporary meassure since list_files ignores all the files inside a tmp workspace
}) //Temporary measure since list_files ignores all the files inside a tmp workspace

console.log("Task ID:", taskId)
console.log("Test filename:", testFile.name)
Expand Down
2 changes: 1 addition & 1 deletion apps/web-roo-code/src/app/evals/evals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export function Evals({
</ScatterChart>
</ChartContainer>
<div className="py-4 text-xs opacity-50">
(Note: Very expensive models are exluded from the scatter plot.)
(Note: Very expensive models are excluded from the scatter plot.)
</div>
</TableCaption>
</Table>
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Start the evals service:
docker compose -f packages/evals/docker-compose.yml --profile server --profile runner up --build --scale runner=0
```

The initial build process can take a minute or two. Upon success you should see ouput indicating that a web service is running on [localhost:3000](http://localhost:3000/):
The initial build process can take a minute or two. Upon success you should see output indicating that a web service is running on [localhost:3000](http://localhost:3000/):
<img width="1182" alt="Screenshot 2025-06-05 at 12 05 38 PM" src="https://github.com/user-attachments/assets/34f25a59-1362-458c-aafa-25e13cdb2a7a" />

Additionally, you'll find in Docker Desktop that database and redis services are running:
Expand Down
2 changes: 1 addition & 1 deletion src/core/tools/readFileTool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function getReadFileToolDescription(blockName: string, blockParams: any):
}
} catch (error) {
console.error("Failed to parse read_file args XML for description:", error)
return `[${blockName} with unparseable args]`
return `[${blockName} with unparsable args]`
}
} else if (blockParams.path) {
// Fallback for legacy single-path usage
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/src/utils/vscode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class VSCodeAPIWrapper {
* @remarks When running webview code inside a web browser, postMessage will instead
* log the given message to the console.
*
* @param message Abitrary data (must be JSON serializable) to send to the extension context.
* @param message Arbitrary data (must be JSON serializable) to send to the extension context.
*/
public postMessage(message: WebviewMessage) {
if (this.vsCodeApi) {
Expand Down
Loading