From 0a81dffdb8f8e8e8078225f84d87aa09223f2d38 Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Fri, 30 Aug 2024 21:39:15 +0200 Subject: [PATCH] docs: update contribution section --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 543ab971..9228dcbb 100644 --- a/README.md +++ b/README.md @@ -49,11 +49,11 @@ import { TokenMemory } from "bee-agent-framework/memory/tokenMemory"; import { DuckDuckGoSearchTool } from "bee-agent-framework/tools/search/duckDuckGoSearch"; import { OpenMeteoTool } from "bee-agent-framework/tools/weather/openMeteo"; -const llm = new OllamaChatLLM(); // default is llama3.1 (8B), it is recommended to use 70B model +const llm = new OllamaChatLLM(); // default is llama3.1 (8B), it is recommended to use 70B model const agent = new BeeAgent({ - llm, // for more explore 'bee-agent-framework/adapters' - memory: new TokenMemory({ llm }), // for more explore 'bee-agent-framework/memory' + llm, // for more explore 'bee-agent-framework/adapters' + memory: new TokenMemory({ llm }), // for more explore 'bee-agent-framework/memory' tools: [new DuckDuckGoSearchTool(), new OpenMeteoTool()], // for more explore 'bee-agent-framework/tools' }); @@ -156,11 +156,7 @@ To see more in-depth explanation see [docs](./docs/overview.md). The Bee Agent Framework is an open-source project and we ❤️ contributions. -### Feature contributions - -You can get started with any ticket market as “good first issue”. - -**Have an idea for a new feature?** We recommend you first talk to a maintainer prior to spending a lot of time making a pull request that may not align with the project roadmap. +If you'd like to contribute to Bee, please take a look at our [contribution guidelines](./CONTRIBUTING.md). ### Bugs