From 75ac90256853f77ec98fbc460afa8802c4af8e9e Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Fri, 29 Nov 2024 17:20:49 +0100 Subject: [PATCH] chore: release 0.0.44 Signed-off-by: Tomas Dvorak --- CHANGELOG.md | 14 ++++++++++++++ docs/CHANGELOG.md | 14 ++++++++++++++ docs/tools.md | 32 ++++++++++++++++---------------- package.json | 2 +- 4 files changed, 45 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a196320..ce84b84f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.0.44](https://github.com/i-am-bee/bee-agent-framework/compare/v0.0.43...v0.0.44) (2024-11-29) + +### Features + +- **agents:** secure thought single-line format via system prompt ([#198](https://github.com/i-am-bee/bee-agent-framework/issues/198)) ([e67dabe](https://github.com/i-am-bee/bee-agent-framework/commit/e67dabe390203667efc0160a46dd31f33ba4a6d4)) +- **agents:** update constraint decoding for Bee ([41ea34f](https://github.com/i-am-bee/bee-agent-framework/commit/41ea34f3af4cfbfe19b535f0659d41142a68d1a2)) +- **tools:** add tool for Milvus (Vector DB) ([#188](https://github.com/i-am-bee/bee-agent-framework/issues/188)) ([bf07a46](https://github.com/i-am-bee/bee-agent-framework/commit/bf07a46370c3362bfa6abecf3768e883b3c55ec9)) + +### Bug Fixes + +- **adapters:** gcp vertexai llm adapter parameters ([#194](https://github.com/i-am-bee/bee-agent-framework/issues/194)) ([54819bf](https://github.com/i-am-bee/bee-agent-framework/commit/54819bfb77e1b2ee931273031e9ebedfc998bd78)) +- **agents:** handle nodes without newlines in PrefixParser ([bb5e3df](https://github.com/i-am-bee/bee-agent-framework/commit/bb5e3dfef335f1ad3826194a50b9d956cf37624b)) +- **tools:** update ES Tool typings to work with newer versions ([cf19ba0](https://github.com/i-am-bee/bee-agent-framework/commit/cf19ba041174f83efe91a51b05c5fe90ada2e3d4)) + ## [0.0.43](https://github.com/i-am-bee/bee-agent-framework/compare/v0.0.42...v0.0.43) (2024-11-26) ### Features diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3a196320..ce84b84f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.0.44](https://github.com/i-am-bee/bee-agent-framework/compare/v0.0.43...v0.0.44) (2024-11-29) + +### Features + +- **agents:** secure thought single-line format via system prompt ([#198](https://github.com/i-am-bee/bee-agent-framework/issues/198)) ([e67dabe](https://github.com/i-am-bee/bee-agent-framework/commit/e67dabe390203667efc0160a46dd31f33ba4a6d4)) +- **agents:** update constraint decoding for Bee ([41ea34f](https://github.com/i-am-bee/bee-agent-framework/commit/41ea34f3af4cfbfe19b535f0659d41142a68d1a2)) +- **tools:** add tool for Milvus (Vector DB) ([#188](https://github.com/i-am-bee/bee-agent-framework/issues/188)) ([bf07a46](https://github.com/i-am-bee/bee-agent-framework/commit/bf07a46370c3362bfa6abecf3768e883b3c55ec9)) + +### Bug Fixes + +- **adapters:** gcp vertexai llm adapter parameters ([#194](https://github.com/i-am-bee/bee-agent-framework/issues/194)) ([54819bf](https://github.com/i-am-bee/bee-agent-framework/commit/54819bfb77e1b2ee931273031e9ebedfc998bd78)) +- **agents:** handle nodes without newlines in PrefixParser ([bb5e3df](https://github.com/i-am-bee/bee-agent-framework/commit/bb5e3dfef335f1ad3826194a50b9d956cf37624b)) +- **tools:** update ES Tool typings to work with newer versions ([cf19ba0](https://github.com/i-am-bee/bee-agent-framework/commit/cf19ba041174f83efe91a51b05c5fe90ada2e3d4)) + ## [0.0.43](https://github.com/i-am-bee/bee-agent-framework/compare/v0.0.42...v0.0.43) (2024-11-26) ### Features diff --git a/docs/tools.md b/docs/tools.md index a1ba2d28..1ceea4e7 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -10,22 +10,22 @@ These tools extend the agent's abilities, allowing it to interact with external ## Built-in tools -| Name | Description | -| ------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -| `PythonTool` | Run arbitrary Python code in the remote environment. | -| `WikipediaTool` | Search for data on Wikipedia. | -| `GoogleSearchTool` | Search for data on Google using Custom Search Engine. | -| `DuckDuckGoTool` | Search for data on DuckDuckGo. | -| [`SQLTool`](./sql-tool.md) | Execute SQL queries against relational databases. | -| `ElasticSearchTool` | Perform search or aggregation queries against an ElasticSearch database. | -| `CustomTool` | Run your own Python function in the remote environment. | -| `LLMTool` | Use an LLM to process input data. | -| `DynamicTool` | Construct to create dynamic tools. | -| `ArXivTool` | Retrieve research articles published on arXiv. | -| `WebCrawlerTool` | Retrieve content of an arbitrary website. | -| `OpenMeteoTool` | Retrieve current, previous, or upcoming weather for a given destination. | -| `MilvusDatabaseTool` | Perform retrieval queries (search, insert, delete, manage collections) against a MilvusDatabaseTool database. | -| ➕ [Request](https://github.com/i-am-bee/bee-agent-framework/discussions) | | +| Name | Description | +| ------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| `PythonTool` | Run arbitrary Python code in the remote environment. | +| `WikipediaTool` | Search for data on Wikipedia. | +| `GoogleSearchTool` | Search for data on Google using Custom Search Engine. | +| `DuckDuckGoTool` | Search for data on DuckDuckGo. | +| [`SQLTool`](./sql-tool.md) | Execute SQL queries against relational databases. | +| `ElasticSearchTool` | Perform search or aggregation queries against an ElasticSearch database. | +| `CustomTool` | Run your own Python function in the remote environment. | +| `LLMTool` | Use an LLM to process input data. | +| `DynamicTool` | Construct to create dynamic tools. | +| `ArXivTool` | Retrieve research articles published on arXiv. | +| `WebCrawlerTool` | Retrieve content of an arbitrary website. | +| `OpenMeteoTool` | Retrieve current, previous, or upcoming weather for a given destination. | +| `MilvusDatabaseTool` | Perform retrieval queries (search, insert, delete, manage collections) against a MilvusDatabaseTool database. | +| ➕ [Request](https://github.com/i-am-bee/bee-agent-framework/discussions) | | All examples can be found [here](/examples/tools). diff --git a/package.json b/package.json index df39e664..678fa191 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bee-agent-framework", - "version": "0.0.43", + "version": "0.0.44", "license": "Apache-2.0", "description": "Bee - LLM Agent Framework", "author": "IBM Corp.",