praisonaiagents 0.0.161__py3-none-any.whl → 0.0.162__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/agent/agent.py +6 -2
- {praisonaiagents-0.0.161.dist-info → praisonaiagents-0.0.162.dist-info}/METADATA +1 -1
- {praisonaiagents-0.0.161.dist-info → praisonaiagents-0.0.162.dist-info}/RECORD +5 -5
- {praisonaiagents-0.0.161.dist-info → praisonaiagents-0.0.162.dist-info}/WHEEL +0 -0
- {praisonaiagents-0.0.161.dist-info → praisonaiagents-0.0.162.dist-info}/top_level.txt +0 -0
praisonaiagents/agent/agent.py
CHANGED
@@ -2082,13 +2082,17 @@ Output MUST be JSON with 'reflection' and 'satisfactory'.
|
|
2082
2082
|
display_error(f"Error in _achat_completion: {e}")
|
2083
2083
|
return None
|
2084
2084
|
|
2085
|
+
async def arun(self, prompt: str, **kwargs):
|
2086
|
+
"""Async alias for astart() method"""
|
2087
|
+
return await self.astart(prompt, **kwargs)
|
2088
|
+
|
2085
2089
|
async def astart(self, prompt: str, **kwargs):
|
2086
2090
|
"""Async version of start method"""
|
2087
2091
|
return await self.achat(prompt, **kwargs)
|
2088
2092
|
|
2089
|
-
def run(self):
|
2093
|
+
def run(self, prompt: str, **kwargs):
|
2090
2094
|
"""Alias for start() method"""
|
2091
|
-
return self.start()
|
2095
|
+
return self.start(prompt, **kwargs)
|
2092
2096
|
|
2093
2097
|
def start(self, prompt: str, **kwargs):
|
2094
2098
|
"""Start the agent with a prompt. This is a convenience method that wraps chat()."""
|
@@ -6,7 +6,7 @@ praisonaiagents/flow_display.py,sha256=E84J_H3h8L-AqL_F1JzEUInQYdjmIEuNL1LZr4__H
|
|
6
6
|
praisonaiagents/main.py,sha256=NuAmE-ZrH4X0O9ysNA2AfxEQ8APPssO_ZR_f7h97QOo,17370
|
7
7
|
praisonaiagents/session.py,sha256=FHWButPBaFGA4x1U_2gImroQChHnFy231_aAa_n5KOQ,20364
|
8
8
|
praisonaiagents/agent/__init__.py,sha256=KBqW_augD-HcaV3FL88gUmhDCpwnSTavGENi7RqneTo,505
|
9
|
-
praisonaiagents/agent/agent.py,sha256=
|
9
|
+
praisonaiagents/agent/agent.py,sha256=ZZEnHzlIR-9ayQYbiAHJhPH4Eq7ozhQCJ6E5dEbmDA4,148454
|
10
10
|
praisonaiagents/agent/context_agent.py,sha256=sv2zJuxrzdyV5ZhOwbGTxvSGSJNCJbL_cr4HBWejEYs,107472
|
11
11
|
praisonaiagents/agent/handoff.py,sha256=Saq0chqfvC6Zf5UbXvmctybbehqnotrXn72JsS-76Q0,13099
|
12
12
|
praisonaiagents/agent/image_agent.py,sha256=xKDhW8T1Y3e15lQpY6N2pdvBNJmAoWDibJa4BYa-Njs,10205
|
@@ -67,7 +67,7 @@ praisonaiagents/tools/xml_tools.py,sha256=iYTMBEk5l3L3ryQ1fkUnNVYK-Nnua2Kx2S0dxN
|
|
67
67
|
praisonaiagents/tools/yaml_tools.py,sha256=uogAZrhXV9O7xvspAtcTfpKSQYL2nlOTvCQXN94-G9A,14215
|
68
68
|
praisonaiagents/tools/yfinance_tools.py,sha256=s2PBj_1v7oQnOobo2fDbQBACEHl61ftG4beG6Z979ZE,8529
|
69
69
|
praisonaiagents/tools/train/data/generatecot.py,sha256=8yacncfYgIbPPwOROp9EGVV0FTKD8tiRu5TDIPnQf38,19402
|
70
|
-
praisonaiagents-0.0.
|
71
|
-
praisonaiagents-0.0.
|
72
|
-
praisonaiagents-0.0.
|
73
|
-
praisonaiagents-0.0.
|
70
|
+
praisonaiagents-0.0.162.dist-info/METADATA,sha256=yAtjrVThpstSAfG0bGkkjTVIibUCw6iT74C_VtXK5yY,2146
|
71
|
+
praisonaiagents-0.0.162.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
72
|
+
praisonaiagents-0.0.162.dist-info/top_level.txt,sha256=_HsRddrJ23iDx5TTqVUVvXG2HeHBL5voshncAMDGjtA,16
|
73
|
+
praisonaiagents-0.0.162.dist-info/RECORD,,
|
File without changes
|
File without changes
|