diff --git a/.gitignore b/.gitignore index 195ecb7178..3b43631318 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,10 @@ openai/ # news CURRENT_BULLETIN.md + +# AgBenchmark +agbenchmark/reports/ + +# Nodejs +package-lock.json +package.json \ No newline at end of file diff --git a/BULLETIN.md b/BULLETIN.md index 11cc627776..9a24b4986d 100644 --- a/BULLETIN.md +++ b/BULLETIN.md @@ -4,24 +4,18 @@ 📖 *User Guide*: https://docs.agpt.co. 👩 *Contributors Wiki*: https://github.com/Significant-Gravitas/Auto-GPT/wiki/Contributing. -# v0.4.6 RELEASE HIGHLIGHTS! 🚀 +# v0.4.7 RELEASE HIGHLIGHTS! 🚀 # ----------------------------- -This release includes under-the-hood improvements and bug fixes, including better UTF-8 -special character support, workspace write access for sandboxed Python execution, -more robust path resolution for config files and the workspace, and a full restructure -of the Agent class, the "brain" of Auto-GPT, to make it more extensible. +This release introduces initial REST API support, powered by e2b's agent +protocol SDK (https://github.com/e2b-dev/agent-protocol#sdk). -We have also released some documentation updates, including: +It also includes improvements to prompt generation and support +for our new benchmarking tool, Auto-GPT-Benchmarks +(https://github.com/Significant-Gravitas/Auto-GPT-Benchmarks). -- *How to share your system logs* - Visit [docs/share-your-logs.md] to learn how to how to share logs with us - via a log analyzer graciously contributed by https://www.e2b.dev/ +We've also moved our documentation to Material Theme, at https://docs.agpt.co. -- *Auto-GPT re-architecture documentation* - You can learn more about the inner-workings of the Auto-GPT re-architecture - released last cycle, via these links: - * [autogpt/core/README.md] - * [autogpt/core/ARCHITECTURE_NOTES.md] +As usual, we've squashed a few bugs and made some under-the-hood improvements. -Take a look at the Release Notes on Github for the full changelog! +Take a look at the Release Notes on Github for the full changelog: https://github.com/Significant-Gravitas/Auto-GPT/releases. diff --git a/docs/configuration/memory.md b/docs/configuration/memory.md index 3fa908b261..1a5e716abf 100644 --- a/docs/configuration/memory.md +++ b/docs/configuration/memory.md @@ -188,7 +188,7 @@ View memory usage by using the `--debug` flag :) ## 🧠 Memory pre-seeding !!! warning - Data ingestion is broken in v0.4.6 and possibly earlier versions. This is a known issue that will be addressed in future releases. Follow these issues for updates. + Data ingestion is broken in v0.4.7 and possibly earlier versions. This is a known issue that will be addressed in future releases. Follow these issues for updates. [Issue 4435](https://github.com/Significant-Gravitas/Auto-GPT/issues/4435) [Issue 4024](https://github.com/Significant-Gravitas/Auto-GPT/issues/4024) [Issue 2076](https://github.com/Significant-Gravitas/Auto-GPT/issues/2076) diff --git a/pyproject.toml b/pyproject.toml index da0fcdd688..ede3e62da4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "agpt" -version = "0.4.6" +version = "0.4.7" authors = [ { name="Torantulino", email="support@agpt.co" }, ]