diff --git a/CHANGELOG.md b/CHANGELOG.md index 811547a..a6f2985 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.0.2 + +- Agents can now search for routes before starting a free browsing session +- Memory API is now much more stable +- Added comments to ./examples/shopping.ts for how to set memory +- Fixed an issue where the ARIA tree was being badly truncated + ## 1.1.0 - Incorporates the ability to pass in HDR keys for using collective memory. @@ -13,10 +20,9 @@ - `@hdr/browser` is now `nolita`! - Introduced several breaking changes to the type system in the underlying engine -- specifically in the structure of responses. All are streamlined, but you may see different structure coming back from the output. - We now have several commands you can run: - - `nolita` works the same as before, running a quick session in-terminal to solve a task. It's been rewritten to be cleaner and more friendly. - - `nolita serve` lets you run a server for running objectives in a sandboxed local Chrome instance. `--port` will let you set a custom port. Documentation is provided. - - `nolita create` lets you bootstrap a full-stack agentic application in one command. - + - `nolita` works the same as before, running a quick session in-terminal to solve a task. It's been rewritten to be cleaner and more friendly. + - `nolita serve` lets you run a server for running objectives in a sandboxed local Chrome instance. `--port` will let you set a custom port. Documentation is provided. + - `nolita create` lets you bootstrap a full-stack agentic application in one command. ## 0.3.1 @@ -37,4 +43,4 @@ ## 0.1.0 -- Initial release. \ No newline at end of file +- Initial release. diff --git a/package.json b/package.json index 618e03a..01ae53b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nolita", - "version": "1.1.0", + "version": "1.2.0", "description": "", "main": "dist/index.js", "files": [ diff --git a/src/browser/index.ts b/src/browser/index.ts index bcfd7c5..f404147 100644 --- a/src/browser/index.ts +++ b/src/browser/index.ts @@ -160,7 +160,6 @@ export class Browser { } async performManyActions(commands: BrowserAction[], inventory?: Inventory) { - // console.log("PERFORMING", commands); for (const command of commands) { await this.performAction(command, inventory); }