-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathbee_advanced.ts
117 lines (110 loc) · 3.95 KB
/
bee_advanced.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import "dotenv/config.js";
import { BeeAgent } from "bee-agent-framework/agents/bee/agent";
import { createConsoleReader } from "../helpers/io.js";
import { FrameworkError } from "bee-agent-framework/errors";
import { Logger } from "bee-agent-framework/logger/logger";
import {
DuckDuckGoSearchTool,
DuckDuckGoSearchToolSearchType,
} from "bee-agent-framework/tools/search/duckDuckGoSearch";
import { OpenMeteoTool } from "bee-agent-framework/tools/weather/openMeteo";
import { UnconstrainedMemory } from "bee-agent-framework/memory/unconstrainedMemory";
import { z } from "zod";
import { OllamaChatLLM } from "bee-agent-framework/adapters/ollama/chat";
Logger.root.level = "silent"; // disable internal logs
const logger = new Logger({ name: "app", level: "trace" });
const llm = new OllamaChatLLM({
modelId: "llama3.1", // llama3.1:70b for better performance
});
const agent = new BeeAgent({
llm,
memory: new UnconstrainedMemory(),
// You can override internal templates
templates: {
user: (template) =>
template.fork((config) => {
config.schema = z.object({ input: z.string() }).passthrough();
config.template = `User: {{input}}`;
}),
system: (template) =>
template.fork((config) => {
config.defaults.instructions =
"You are a helpful assistant that uses tools to answer questions.";
}),
toolNoResultError: (template) =>
template.fork((config) => {
config.template += `\nPlease reformat your input.`;
}),
toolNotFoundError: (template) =>
template.fork((config) => {
config.schema = z
.object({ tools: z.array(z.object({ name: z.string() }).passthrough()) })
.passthrough();
config.template = `Tool does not exist!
{{#tools.length}}
Use one of the following tools: {{#trim}}{{#tools}}{{name}},{{/tools}}{{/trim}}
{{/tools.length}}`;
}),
},
tools: [
new DuckDuckGoSearchTool({
maxResults: 10,
search: {
safeSearch: DuckDuckGoSearchToolSearchType.STRICT,
},
}),
// new WebCrawlerTool(), // HTML web page crawler
// new WikipediaTool(),
new OpenMeteoTool(), // weather tool
// new ArXivTool(), // research papers
// new DynamicTool() // custom python tool
],
});
const reader = createConsoleReader();
try {
for await (const { prompt } of reader) {
const response = await agent
.run(
{ prompt },
{
execution: {
maxRetriesPerStep: 3,
totalMaxRetries: 10,
maxIterations: 20,
},
signal: AbortSignal.timeout(2 * 60 * 1000),
},
)
.observe((emitter) => {
emitter.on("start", () => {
reader.write(`Agent 🤖 : `, "starting new iteration");
});
emitter.on("error", ({ error }) => {
reader.write(`Agent 🤖 : `, FrameworkError.ensure(error).dump());
});
emitter.on("retry", () => {
reader.write(`Agent 🤖 : `, "retrying the action...");
});
emitter.on("update", async ({ data, update, meta }) => {
// log 'data' to see the whole state
// to log only valid runs (no errors), check if meta.success === true
reader.write(`Agent (${update.key}) 🤖 : `, update.value);
});
emitter.on("partialUpdate", ({ data, update, meta }) => {
// ideal for streaming (line by line)
// log 'data' to see the whole state
// to log only valid runs (no errors), check if meta.success === true
// reader.write(`Agent (partial ${update.key}) 🤖 : `, update.value);
});
// To observe all events (uncomment following block)
// emitter.match("*.*", async (data: unknown, event) => {
// logger.trace(event, `Received event "${event.path}"`);
// });
});
reader.write(`Agent 🤖 : `, response.result.text);
}
} catch (error) {
logger.error(FrameworkError.ensure(error).dump());
} finally {
reader.close();
}