praisonaiagents 0.0.20__py3-none-any.whl → 0.0.21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- praisonaiagents/__init__.py +6 -0
- praisonaiagents/agent/agent.py +47 -11
- praisonaiagents/agents/agents.py +38 -8
- praisonaiagents/tools/__init__.py +4 -0
- praisonaiagents/tools/tools.py +40 -0
- {praisonaiagents-0.0.20.dist-info → praisonaiagents-0.0.21.dist-info}/METADATA +1 -1
- {praisonaiagents-0.0.20.dist-info → praisonaiagents-0.0.21.dist-info}/RECORD +9 -7
- {praisonaiagents-0.0.20.dist-info → praisonaiagents-0.0.21.dist-info}/WHEEL +1 -1
- {praisonaiagents-0.0.20.dist-info → praisonaiagents-0.0.21.dist-info}/top_level.txt +0 -0
praisonaiagents/__init__.py
CHANGED
@@ -5,6 +5,7 @@ Praison AI Agents - A package for hierarchical AI agent task execution
|
|
5
5
|
from .agent.agent import Agent
|
6
6
|
from .agents.agents import PraisonAIAgents
|
7
7
|
from .task.task import Task
|
8
|
+
from .tools.tools import Tools
|
8
9
|
from .main import (
|
9
10
|
TaskOutput,
|
10
11
|
ReflectionOutput,
|
@@ -21,9 +22,14 @@ from .main import (
|
|
21
22
|
async_display_callbacks,
|
22
23
|
)
|
23
24
|
|
25
|
+
# Add Agents as an alias for PraisonAIAgents
|
26
|
+
Agents = PraisonAIAgents
|
27
|
+
|
24
28
|
__all__ = [
|
25
29
|
'Agent',
|
26
30
|
'PraisonAIAgents',
|
31
|
+
'Agents',
|
32
|
+
'Tools',
|
27
33
|
'Task',
|
28
34
|
'TaskOutput',
|
29
35
|
'ReflectionOutput',
|
praisonaiagents/agent/agent.py
CHANGED
@@ -3,7 +3,7 @@ import time
|
|
3
3
|
import json
|
4
4
|
import logging
|
5
5
|
import asyncio
|
6
|
-
from typing import List, Optional, Any, Dict, Union, Literal
|
6
|
+
from typing import List, Optional, Any, Dict, Union, Literal, TYPE_CHECKING
|
7
7
|
from rich.console import Console
|
8
8
|
from rich.live import Live
|
9
9
|
from openai import AsyncOpenAI
|
@@ -19,6 +19,9 @@ from ..main import (
|
|
19
19
|
error_logs
|
20
20
|
)
|
21
21
|
|
22
|
+
if TYPE_CHECKING:
|
23
|
+
from ..task.task import Task
|
24
|
+
|
22
25
|
class Agent:
|
23
26
|
def _generate_tool_definition(self, function_name):
|
24
27
|
"""
|
@@ -132,10 +135,11 @@ class Agent:
|
|
132
135
|
|
133
136
|
def __init__(
|
134
137
|
self,
|
135
|
-
name: str,
|
136
|
-
role: str,
|
137
|
-
goal: str,
|
138
|
-
backstory: str,
|
138
|
+
name: Optional[str] = None,
|
139
|
+
role: Optional[str] = None,
|
140
|
+
goal: Optional[str] = None,
|
141
|
+
backstory: Optional[str] = None,
|
142
|
+
instructions: Optional[str] = None,
|
139
143
|
llm: Optional[Union[str, Any]] = "gpt-4o",
|
140
144
|
tools: Optional[List[Any]] = None,
|
141
145
|
function_calling_llm: Optional[Any] = None,
|
@@ -158,15 +162,33 @@ class Agent:
|
|
158
162
|
knowledge_sources: Optional[List[Any]] = None,
|
159
163
|
use_system_prompt: Optional[bool] = True,
|
160
164
|
markdown: bool = True,
|
161
|
-
self_reflect: bool =
|
165
|
+
self_reflect: Optional[bool] = None,
|
162
166
|
max_reflect: int = 3,
|
163
167
|
min_reflect: int = 1,
|
164
168
|
reflect_llm: Optional[str] = None
|
165
169
|
):
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
+
# Handle backward compatibility for required fields
|
171
|
+
if all(x is None for x in [name, role, goal, backstory, instructions]):
|
172
|
+
raise ValueError("At least one of name, role, goal, backstory, or instructions must be provided")
|
173
|
+
|
174
|
+
# If instructions are provided, use them to set role, goal, and backstory
|
175
|
+
if instructions:
|
176
|
+
self.name = name or "Agent"
|
177
|
+
self.role = role or "Assistant"
|
178
|
+
self.goal = goal or instructions
|
179
|
+
self.backstory = backstory or instructions
|
180
|
+
# Set self_reflect to False by default for instruction-based agents
|
181
|
+
self.self_reflect = False if self_reflect is None else self_reflect
|
182
|
+
else:
|
183
|
+
# Use provided values or defaults
|
184
|
+
self.name = name or "Agent"
|
185
|
+
self.role = role or "Assistant"
|
186
|
+
self.goal = goal or "Help the user with their tasks"
|
187
|
+
self.backstory = backstory or "I am an AI assistant"
|
188
|
+
# Default to True for traditional agents if not specified
|
189
|
+
self.self_reflect = True if self_reflect is None else self_reflect
|
190
|
+
|
191
|
+
self.instructions = instructions
|
170
192
|
self.llm = llm
|
171
193
|
self.tools = tools if tools else [] # Store original tools
|
172
194
|
self.function_calling_llm = function_calling_llm
|
@@ -190,7 +212,6 @@ class Agent:
|
|
190
212
|
self.use_system_prompt = use_system_prompt
|
191
213
|
self.chat_history = []
|
192
214
|
self.markdown = markdown
|
193
|
-
self.self_reflect = self_reflect
|
194
215
|
self.max_reflect = max_reflect
|
195
216
|
self.min_reflect = min_reflect
|
196
217
|
self.reflect_llm = reflect_llm
|
@@ -202,6 +223,21 @@ Your Role: {self.role}\n
|
|
202
223
|
Your Goal: {self.goal}
|
203
224
|
"""
|
204
225
|
|
226
|
+
def generate_task(self) -> 'Task':
|
227
|
+
"""Generate a Task object from the agent's instructions"""
|
228
|
+
from ..task.task import Task
|
229
|
+
|
230
|
+
description = self.instructions if self.instructions else f"Execute task as {self.role} with goal: {self.goal}"
|
231
|
+
expected_output = "Complete the assigned task successfully"
|
232
|
+
|
233
|
+
return Task(
|
234
|
+
name=self.name,
|
235
|
+
description=description,
|
236
|
+
expected_output=expected_output,
|
237
|
+
agent=self,
|
238
|
+
tools=self.tools
|
239
|
+
)
|
240
|
+
|
205
241
|
def execute_tool(self, function_name, arguments):
|
206
242
|
"""
|
207
243
|
Execute a tool dynamically based on the function name and arguments.
|
praisonaiagents/agents/agents.py
CHANGED
@@ -41,7 +41,10 @@ def process_video(video_path: str, seconds_per_frame=2):
|
|
41
41
|
return base64_frames
|
42
42
|
|
43
43
|
class PraisonAIAgents:
|
44
|
-
def __init__(self, agents, tasks, verbose=0, completion_checker=None, max_retries=5, process="sequential", manager_llm=None):
|
44
|
+
def __init__(self, agents, tasks=None, verbose=0, completion_checker=None, max_retries=5, process="sequential", manager_llm=None):
|
45
|
+
if not agents:
|
46
|
+
raise ValueError("At least one agent must be provided")
|
47
|
+
|
45
48
|
self.agents = agents
|
46
49
|
self.tasks = {}
|
47
50
|
if max_retries < 3:
|
@@ -54,9 +57,36 @@ class PraisonAIAgents:
|
|
54
57
|
if not manager_llm:
|
55
58
|
logging.debug("No manager_llm provided. Using OPENAI_MODEL_NAME environment variable or defaulting to 'gpt-4o'")
|
56
59
|
self.manager_llm = manager_llm if manager_llm else os.getenv('OPENAI_MODEL_NAME', 'gpt-4o')
|
60
|
+
|
61
|
+
# If no tasks provided, generate them from agents
|
62
|
+
if tasks is None:
|
63
|
+
tasks = []
|
64
|
+
for agent in self.agents:
|
65
|
+
task = agent.generate_task()
|
66
|
+
tasks.append(task)
|
67
|
+
logging.info(f"Auto-generated {len(tasks)} tasks from agents")
|
68
|
+
else:
|
69
|
+
# Validate tasks for backward compatibility
|
70
|
+
if not tasks:
|
71
|
+
raise ValueError("If tasks are provided, at least one task must be present")
|
72
|
+
logging.info(f"Using {len(tasks)} provided tasks")
|
73
|
+
|
74
|
+
# Add tasks and set their status
|
57
75
|
for task in tasks:
|
58
76
|
self.add_task(task)
|
59
77
|
task.status = "not started"
|
78
|
+
|
79
|
+
# If tasks were auto-generated from agents or process is sequential, set up sequential flow
|
80
|
+
if len(tasks) > 1 and (process == "sequential" or all(task.next_tasks == [] for task in tasks)):
|
81
|
+
for i in range(len(tasks) - 1):
|
82
|
+
# Set up next task relationship
|
83
|
+
tasks[i].next_tasks = [tasks[i + 1].name]
|
84
|
+
# Set up context for the next task to include the current task
|
85
|
+
if tasks[i + 1].context is None:
|
86
|
+
tasks[i + 1].context = []
|
87
|
+
tasks[i + 1].context.append(tasks[i])
|
88
|
+
logging.info("Set up sequential flow with automatic context passing")
|
89
|
+
|
60
90
|
self._state = {} # Add state storage at PraisonAIAgents level
|
61
91
|
|
62
92
|
def add_task(self, task):
|
@@ -119,9 +149,9 @@ Expected Output: {task.expected_output}.
|
|
119
149
|
else:
|
120
150
|
context_results += f"Previous task {context_task.name if context_task.name else context_task.description} had no result.\n"
|
121
151
|
task_prompt += f"""
|
122
|
-
|
123
|
-
|
124
|
-
|
152
|
+
Here are the results of previous tasks that might be useful:\n
|
153
|
+
{context_results}
|
154
|
+
"""
|
125
155
|
task_prompt += "Please provide only the final result of your work. Do not add any conversation or extra explanation."
|
126
156
|
|
127
157
|
if self.verbose >= 2:
|
@@ -320,7 +350,7 @@ Expected Output: {task.expected_output}.
|
|
320
350
|
task_prompt = f"""
|
321
351
|
You need to do the following task: {task.description}.
|
322
352
|
Expected Output: {task.expected_output}.
|
323
|
-
|
353
|
+
"""
|
324
354
|
if task.context:
|
325
355
|
context_results = ""
|
326
356
|
for context_task in task.context:
|
@@ -329,9 +359,9 @@ Expected Output: {task.expected_output}.
|
|
329
359
|
else:
|
330
360
|
context_results += f"Previous task {context_task.name if context_task.name else context_task.description} had no result.\n"
|
331
361
|
task_prompt += f"""
|
332
|
-
|
333
|
-
|
334
|
-
|
362
|
+
Here are the results of previous tasks that might be useful:\n
|
363
|
+
{context_results}
|
364
|
+
"""
|
335
365
|
task_prompt += "Please provide only the final result of your work. Do not add any conversation or extra explanation."
|
336
366
|
|
337
367
|
if self.verbose >= 2:
|
@@ -0,0 +1,40 @@
|
|
1
|
+
"""Tools module for PraisonAI Agents"""
|
2
|
+
from typing import List, Dict
|
3
|
+
import logging
|
4
|
+
import importlib
|
5
|
+
|
6
|
+
class Tools:
|
7
|
+
@staticmethod
|
8
|
+
def internet_search(query: str) -> List[Dict]:
|
9
|
+
"""
|
10
|
+
Perform a search using DuckDuckGo.
|
11
|
+
|
12
|
+
Args:
|
13
|
+
query (str): The search query.
|
14
|
+
|
15
|
+
Returns:
|
16
|
+
list: A list of search result titles, URLs, and snippets.
|
17
|
+
"""
|
18
|
+
# Check if duckduckgo_search is installed
|
19
|
+
if importlib.util.find_spec("duckduckgo_search") is None:
|
20
|
+
error_msg = "DuckDuckGo search is not available. Please install duckduckgo_search package using: pip install duckduckgo_search"
|
21
|
+
logging.error(error_msg)
|
22
|
+
return [{"error": error_msg}]
|
23
|
+
|
24
|
+
try:
|
25
|
+
# Import only when needed
|
26
|
+
from duckduckgo_search import DDGS
|
27
|
+
results = []
|
28
|
+
ddgs = DDGS()
|
29
|
+
for result in ddgs.text(keywords=query, max_results=5):
|
30
|
+
results.append({
|
31
|
+
"title": result.get("title", ""),
|
32
|
+
"url": result.get("href", ""),
|
33
|
+
"snippet": result.get("body", "")
|
34
|
+
})
|
35
|
+
return results
|
36
|
+
|
37
|
+
except Exception as e:
|
38
|
+
error_msg = f"Error during DuckDuckGo search: {e}"
|
39
|
+
logging.error(error_msg)
|
40
|
+
return [{"error": error_msg}]
|
@@ -1,9 +1,9 @@
|
|
1
|
-
praisonaiagents/__init__.py,sha256=
|
1
|
+
praisonaiagents/__init__.py,sha256=xJLN8i6V9SRmJFMxSRWDQt_hBePoupVd3WanNIgbBbc,1052
|
2
2
|
praisonaiagents/main.py,sha256=7Phfe0gdxHzbhPb3WRzBTfq9CaLq0K31M5DM_4oCiCQ,12451
|
3
3
|
praisonaiagents/agent/__init__.py,sha256=sKO8wGEXvtCrvV1e834r1Okv0XAqAxqZCqz6hKLiTvA,79
|
4
|
-
praisonaiagents/agent/agent.py,sha256=
|
4
|
+
praisonaiagents/agent/agent.py,sha256=NjoFCM1d2IWEgAGNcc_g0OGMLWUebkba_BgQtjM1tT4,32419
|
5
5
|
praisonaiagents/agents/__init__.py,sha256=7RDeQNSqZg5uBjD4M_0p_F6YgfWuDuxPFydPU50kDYc,120
|
6
|
-
praisonaiagents/agents/agents.py,sha256=
|
6
|
+
praisonaiagents/agents/agents.py,sha256=EnrX-nvIsRyi2Xv1fBpZZ1kCaY9CvrcNqxgL_GNqaQc,23089
|
7
7
|
praisonaiagents/build/lib/praisonaiagents/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
8
8
|
praisonaiagents/build/lib/praisonaiagents/main.py,sha256=zDhN5KKtKbfruolDNxlyJkcFlkSt4KQkQTDRfQVAhxc,3960
|
9
9
|
praisonaiagents/build/lib/praisonaiagents/agent/__init__.py,sha256=sKO8wGEXvtCrvV1e834r1Okv0XAqAxqZCqz6hKLiTvA,79
|
@@ -16,7 +16,9 @@ praisonaiagents/process/__init__.py,sha256=lkYbL7Hn5a0ldvJtkdH23vfIIZLIcanK-65C0
|
|
16
16
|
praisonaiagents/process/process.py,sha256=4qXdrCDQPH5MtvHvdJVURXKNgSl6ae3OYTiqAF_A2ZU,24295
|
17
17
|
praisonaiagents/task/__init__.py,sha256=VL5hXVmyGjINb34AalxpBMl-YW9m5EDcRkMTKkSSl7c,80
|
18
18
|
praisonaiagents/task/task.py,sha256=UiiWgLDOdX_w0opP8h8-u-leVZlq1CkpGUmf7L2qyJs,3110
|
19
|
-
praisonaiagents
|
20
|
-
praisonaiagents
|
21
|
-
praisonaiagents-0.0.
|
22
|
-
praisonaiagents-0.0.
|
19
|
+
praisonaiagents/tools/__init__.py,sha256=rFen7LHI55mxBVW2raQmqKnK_JFuvTVVAuUmrQpDg_c,87
|
20
|
+
praisonaiagents/tools/tools.py,sha256=fs0fjW7Y_k9qsaR0CmlPjayiiVrDxDmgfr5SwR1Tdck,1363
|
21
|
+
praisonaiagents-0.0.21.dist-info/METADATA,sha256=o5mWRqp1BpA36xWCw2V7mArC7iujMSD2z6lTWl8_9Qo,233
|
22
|
+
praisonaiagents-0.0.21.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
23
|
+
praisonaiagents-0.0.21.dist-info/top_level.txt,sha256=_HsRddrJ23iDx5TTqVUVvXG2HeHBL5voshncAMDGjtA,16
|
24
|
+
praisonaiagents-0.0.21.dist-info/RECORD,,
|
File without changes
|