Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

version bump #41

Merged
merged 1 commit into from
Apr 26, 2024
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
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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

Expand All @@ -37,4 +43,4 @@

## 0.1.0

- Initial release.
- Initial release.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nolita",
"version": "1.1.0",
"version": "1.2.0",
"description": "",
"main": "dist/index.js",
"files": [
Expand Down
1 change: 0 additions & 1 deletion src/browser/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Loading