-
Notifications
You must be signed in to change notification settings - Fork 137
/
bee.ts
123 lines (113 loc) · 4.41 KB
/
bee.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
118
119
120
121
122
123
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 { TokenMemory } from "bee-agent-framework/memory/tokenMemory";
import { Logger } from "bee-agent-framework/logger/logger";
import { PythonTool } from "bee-agent-framework/tools/python/python";
import { LocalPythonStorage } from "bee-agent-framework/tools/python/storage";
import { DuckDuckGoSearchTool } from "bee-agent-framework/tools/search/duckDuckGoSearch";
import { WikipediaTool } from "bee-agent-framework/tools/search/wikipedia";
import { OpenMeteoTool } from "bee-agent-framework/tools/weather/openMeteo";
import { dirname } from "node:path";
import { fileURLToPath } from "node:url";
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 codeInterpreterUrl = process.env.CODE_INTERPRETER_URL;
const __dirname = dirname(fileURLToPath(import.meta.url));
const codeInterpreterTmpdir =
process.env.CODE_INTEPRETER_TMPDIR ?? "./examples/tmp/code_interpreter";
const localTmpdir = process.env.LOCAL_TMPDIR ?? "./examples/tmp/local";
const agent = new BeeAgent({
llm,
memory: new TokenMemory({ llm }),
tools: [
new DuckDuckGoSearchTool(),
// new WebCrawlerTool(), // HTML web page crawler
new WikipediaTool(),
new OpenMeteoTool(), // weather tool
// new ArXivTool(), // research papers
// new DynamicTool() // custom python tool
...(codeInterpreterUrl
? [
new PythonTool({
codeInterpreter: { url: codeInterpreterUrl },
storage: new LocalPythonStorage({
interpreterWorkingDir: `${__dirname}/../../${codeInterpreterTmpdir}`,
localWorkingDir: `${__dirname}/../../${localTmpdir}`,
}),
}),
]
: []),
],
});
const reader = createConsoleReader();
if (codeInterpreterUrl) {
reader.write(
"🛠️ System",
`The code interpreter tool is enabled. Please ensure that it is running on ${codeInterpreterUrl}`,
);
}
try {
for await (const { prompt } of reader) {
const response = await agent
.run(
{ prompt },
{
execution: {
maxRetriesPerStep: 3,
totalMaxRetries: 10,
maxIterations: 20,
},
},
)
.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}"`);
// });
// To get raw LLM input (uncomment following block)
// emitter.match(
// (event) => event.creator === llm && event.name === "start",
// async (data: InferCallbackValue<GenerateEvents["start"]>, event) => {
// logger.trace(
// event,
// [
// `Received LLM event "${event.path}"`,
// JSON.stringify(data.input), // array of messages
// ].join("\n"),
// );
// },
// );
});
reader.write(`Agent 🤖 : `, response.result.text);
}
} catch (error) {
logger.error(FrameworkError.ensure(error).dump());
} finally {
reader.close();
}