forked from i-am-bee/beeai-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.py
More file actions
26 lines (18 loc) · 681 Bytes
/
basic.py
File metadata and controls
26 lines (18 loc) · 681 Bytes
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
import asyncio
import sys
import traceback
from beeai_framework.agents.react import ReActAgent
from beeai_framework.backend import ChatModel
from beeai_framework.errors import FrameworkError
from beeai_framework.memory import UnconstrainedMemory
async def main() -> None:
chat_model = ChatModel.from_name("ollama:llama3.1")
agent = ReActAgent(llm=chat_model, tools=[], memory=UnconstrainedMemory())
result = await agent.run("What is the capital of Massachusetts")
print("answer:", result.result.text)
if __name__ == "__main__":
try:
asyncio.run(main())
except FrameworkError as e:
traceback.print_exc()
sys.exit(e.explain())