-
-
Notifications
You must be signed in to change notification settings - Fork 770
Expand file tree
/
Copy pathstructured_agents_example.py
More file actions
54 lines (48 loc) · 1.41 KB
/
structured_agents_example.py
File metadata and controls
54 lines (48 loc) · 1.41 KB
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
from praisonaiagents import Agent, Task, AgentTeam, Tools
from pydantic import BaseModel
class AnalysisReport(BaseModel):
title: str
findings: str
summary: str
# Create a researcher agent
researcher = Agent(
name="AIResearcher",
role="Technology Research Analyst",
goal="Analyze and structure information about AI developments",
backstory="Expert analyst specializing in AI technology trends",
llm="gpt-4o-mini",
tools=[Tools.internet_search],
reflection=False
)
# Create an analyst agent
analyst = Agent(
name="DataAnalyst",
role="Data Insights Specialist",
goal="Structure and analyze research findings",
backstory="Senior data analyst with expertise in pattern recognition",
llm="gpt-4o-mini",
reflection=False
)
# Define structured tasks
research_task = Task(
name="gather_research",
description="Research recent AI developments in 2024",
agent=researcher,
expected_output="Research findings"
)
analysis_task = Task(
name="analyze_findings",
description="Analyze research findings and create structured report. No additional text or explanation.",
agent=analyst,
output_json=AnalysisReport,
expected_output="JSON object"
)
# Initialize and run agents
agents = AgentTeam(
agents=[researcher, analyst],
tasks=[research_task, analysis_task],
process="sequential",
output="verbose"
)
result = agents.start()
print(result)