Skip to content

Commit

Permalink
chore: release 0.0.44
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Dvorak <[email protected]>
  • Loading branch information
Tomas2D committed Nov 29, 2024
1 parent bf07a46 commit 75ac902
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 17 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 14 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
32 changes: 16 additions & 16 deletions docs/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down

0 comments on commit 75ac902

Please sign in to comment.