connectonion 0.5.9__py3-none-any.whl → 0.6.0__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.
- connectonion/__init__.py +16 -16
- connectonion/cli/commands/copy_commands.py +24 -1
- connectonion/cli/commands/deploy_commands.py +15 -0
- connectonion/cli/commands/project_cmd_lib.py +1 -1
- connectonion/core/__init__.py +53 -0
- connectonion/{agent.py → core/agent.py} +5 -5
- connectonion/{tool_executor.py → core/tool_executor.py} +3 -2
- connectonion/{tool_factory.py → core/tool_factory.py} +3 -1
- connectonion/debug/__init__.py +51 -0
- connectonion/{interactive_debugger.py → debug/auto_debug.py} +7 -7
- connectonion/{auto_debug_exception.py → debug/auto_debug_exception.py} +3 -3
- connectonion/{debugger_ui.py → debug/auto_debug_ui.py} +1 -1
- connectonion/{debug_explainer → debug/debug_explainer}/explain_agent.py +1 -1
- connectonion/{debug_explainer → debug/debug_explainer}/explain_context.py +1 -1
- connectonion/{execution_analyzer → debug/execution_analyzer}/execution_analysis.py +1 -1
- connectonion/debug/runtime_inspector/__init__.py +13 -0
- connectonion/{debug_agent → debug/runtime_inspector}/agent.py +1 -1
- connectonion/{xray.py → debug/xray.py} +1 -1
- connectonion/llm_do.py +1 -1
- connectonion/network/__init__.py +34 -0
- connectonion/{announce.py → network/announce.py} +1 -1
- connectonion/{connect.py → network/connect.py} +1 -1
- connectonion/{host.py → network/host.py} +47 -17
- connectonion/{trust.py → network/trust.py} +1 -1
- connectonion/tui/__init__.py +22 -0
- connectonion/tui/chat.py +647 -0
- connectonion/useful_events_handlers/reflect.py +2 -2
- connectonion/useful_plugins/calendar_plugin.py +2 -2
- connectonion/useful_plugins/eval.py +2 -2
- connectonion/useful_plugins/gmail_plugin.py +2 -2
- connectonion/useful_plugins/image_result_formatter.py +2 -2
- connectonion/useful_plugins/re_act.py +2 -2
- connectonion/useful_plugins/shell_approval.py +2 -2
- {connectonion-0.5.9.dist-info → connectonion-0.6.0.dist-info}/METADATA +4 -3
- {connectonion-0.5.9.dist-info → connectonion-0.6.0.dist-info}/RECORD +53 -49
- connectonion/debug_agent/__init__.py +0 -13
- /connectonion/{events.py → core/events.py} +0 -0
- /connectonion/{llm.py → core/llm.py} +0 -0
- /connectonion/{tool_registry.py → core/tool_registry.py} +0 -0
- /connectonion/{usage.py → core/usage.py} +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/__init__.py +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/explainer_prompt.md +0 -0
- /connectonion/{debug_explainer → debug/debug_explainer}/root_cause_analysis_prompt.md +0 -0
- /connectonion/{decorators.py → debug/decorators.py} +0 -0
- /connectonion/{execution_analyzer → debug/execution_analyzer}/__init__.py +0 -0
- /connectonion/{execution_analyzer → debug/execution_analyzer}/execution_analysis_prompt.md +0 -0
- /connectonion/{debug_agent → debug/runtime_inspector}/prompts/debug_assistant.md +0 -0
- /connectonion/{debug_agent → debug/runtime_inspector}/runtime_inspector.py +0 -0
- /connectonion/{asgi.py → network/asgi.py} +0 -0
- /connectonion/{relay.py → network/relay.py} +0 -0
- /connectonion/{trust_agents.py → network/trust_agents.py} +0 -0
- /connectonion/{trust_functions.py → network/trust_functions.py} +0 -0
- {connectonion-0.5.9.dist-info → connectonion-0.6.0.dist-info}/WHEEL +0 -0
- {connectonion-0.5.9.dist-info → connectonion-0.6.0.dist-info}/entry_points.txt +0 -0
|
@@ -20,14 +20,14 @@ Usage:
|
|
|
20
20
|
|
|
21
21
|
from datetime import datetime
|
|
22
22
|
from typing import TYPE_CHECKING
|
|
23
|
-
from ..events import before_each_tool, after_each_tool
|
|
23
|
+
from ..core.events import before_each_tool, after_each_tool
|
|
24
24
|
from ..tui import pick
|
|
25
25
|
from rich.console import Console
|
|
26
26
|
from rich.panel import Panel
|
|
27
27
|
from rich.text import Text
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
|
30
|
-
from ..agent import Agent
|
|
30
|
+
from ..core.agent import Agent
|
|
31
31
|
|
|
32
32
|
_console = Console()
|
|
33
33
|
|
|
@@ -23,10 +23,10 @@ Usage:
|
|
|
23
23
|
|
|
24
24
|
import re
|
|
25
25
|
from typing import TYPE_CHECKING
|
|
26
|
-
from ..events import after_tools
|
|
26
|
+
from ..core.events import after_tools
|
|
27
27
|
|
|
28
28
|
if TYPE_CHECKING:
|
|
29
|
-
from ..agent import Agent
|
|
29
|
+
from ..core.agent import Agent
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def _is_base64_image(text: str) -> tuple[bool, str, str]:
|
|
@@ -29,12 +29,12 @@ Usage:
|
|
|
29
29
|
|
|
30
30
|
from pathlib import Path
|
|
31
31
|
from typing import TYPE_CHECKING
|
|
32
|
-
from ..events import after_user_input
|
|
32
|
+
from ..core.events import after_user_input
|
|
33
33
|
from ..llm_do import llm_do
|
|
34
34
|
from ..useful_events_handlers.reflect import reflect
|
|
35
35
|
|
|
36
36
|
if TYPE_CHECKING:
|
|
37
|
-
from ..agent import Agent
|
|
37
|
+
from ..core.agent import Agent
|
|
38
38
|
|
|
39
39
|
# Prompts
|
|
40
40
|
PLAN_PROMPT = Path(__file__).parent.parent / "prompt_files" / "react_plan.md"
|
|
@@ -22,12 +22,12 @@ Usage:
|
|
|
22
22
|
|
|
23
23
|
import re
|
|
24
24
|
from typing import TYPE_CHECKING
|
|
25
|
-
from ..events import before_each_tool
|
|
25
|
+
from ..core.events import before_each_tool
|
|
26
26
|
from ..tui import pick
|
|
27
27
|
from rich.console import Console
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
|
30
|
-
from ..agent import Agent
|
|
30
|
+
from ..core.agent import Agent
|
|
31
31
|
|
|
32
32
|
_console = Console()
|
|
33
33
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: connectonion
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: A simple Python framework for creating AI agents with behavior tracking
|
|
5
5
|
Project-URL: Homepage, https://github.com/openonion/connectonion
|
|
6
6
|
Project-URL: Documentation, https://docs.connectonion.com
|
|
@@ -30,6 +30,7 @@ Requires-Dist: httpx>=0.24.0
|
|
|
30
30
|
Requires-Dist: litellm>=1.0.0
|
|
31
31
|
Requires-Dist: mnemonic>=0.20
|
|
32
32
|
Requires-Dist: openai>=1.0.0
|
|
33
|
+
Requires-Dist: playwright>=1.40.0
|
|
33
34
|
Requires-Dist: pydantic>=2.0.0
|
|
34
35
|
Requires-Dist: pyjwt>=2.0.0
|
|
35
36
|
Requires-Dist: pynacl>=1.5.0
|
|
@@ -38,12 +39,12 @@ Requires-Dist: pyyaml>=6.0.0
|
|
|
38
39
|
Requires-Dist: questionary>=2.0.0
|
|
39
40
|
Requires-Dist: requests>=2.25.0
|
|
40
41
|
Requires-Dist: rich>=13.0.0
|
|
42
|
+
Requires-Dist: textual-autocomplete>=3.0.0
|
|
43
|
+
Requires-Dist: textual>=0.86.0
|
|
41
44
|
Requires-Dist: toml>=0.10.2
|
|
42
45
|
Requires-Dist: typer>=0.20.0
|
|
43
46
|
Requires-Dist: uvicorn>=0.20.0
|
|
44
47
|
Requires-Dist: websockets>=11.0.0
|
|
45
|
-
Provides-Extra: browser
|
|
46
|
-
Requires-Dist: playwright>=1.40.0; extra == 'browser'
|
|
47
48
|
Provides-Extra: dev
|
|
48
49
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
|
49
50
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
@@ -1,30 +1,10 @@
|
|
|
1
|
-
connectonion/__init__.py,sha256=
|
|
1
|
+
connectonion/__init__.py,sha256=yZ48fcAYjXYU-toEky4aiE1w0l6aKuoJIvaGLQ7GkpY,1928
|
|
2
2
|
connectonion/address.py,sha256=YOzpMOej-HqJUE6o0i0fG8rB7HM-Iods36s9OD--5ig,10852
|
|
3
|
-
connectonion/agent.py,sha256=BHnP4N0odXCSn9xT0QnJpXj3VV-E_vUtNXJ0M6k3RNs,18889
|
|
4
|
-
connectonion/announce.py,sha256=47Lxe8S4yyTbpsmYUmakU_DehrGvljyldmPfKnAOrFQ,3365
|
|
5
|
-
connectonion/asgi.py,sha256=VTMwwEWLq5RYvIufRImMcv-AB5D5pZmM8INaXqwUt4Q,9621
|
|
6
|
-
connectonion/auto_debug_exception.py,sha256=iA-b5GC40AI4YVXen2UCkDkfHLVZehFPgZrinIxykWI,8147
|
|
7
|
-
connectonion/connect.py,sha256=dYuBKxUvcNeyR0IbcKrnspwylp7177JmBYz5DsRhiXQ,9794
|
|
8
3
|
connectonion/console.py,sha256=6_J1ItkLJCHDpdJY-tCuw4jMcS09S-a5juZSDSIr1Nc,21254
|
|
9
|
-
connectonion/
|
|
10
|
-
connectonion/decorators.py,sha256=YFmZMptcchIgNriKFf_vOyacor5i_j6Cy_igTJhdKm4,7141
|
|
11
|
-
connectonion/events.py,sha256=jJOMt1PhRl-ef4R8-WpAq8pUbZ8GKIl0wOB2kJUVyWg,9151
|
|
12
|
-
connectonion/host.py,sha256=ccCMbw2fkd0LaAnor4UuNmTzfa_agmAzYvwperShsuo,18902
|
|
13
|
-
connectonion/interactive_debugger.py,sha256=XHSCGJp9YV6VAZM1gk_AuxKAdBODJQUcLVWaLuTMqv0,16277
|
|
14
|
-
connectonion/llm.py,sha256=IzjlOT6Dj5xIplIymjcaHZ_abwE5wDHEE4pa8zjlEGY,32952
|
|
15
|
-
connectonion/llm_do.py,sha256=YI7kGFKpB6KUEG_CKtP3Bl4IWmRac7TCa9GK5FSV624,12000
|
|
4
|
+
connectonion/llm_do.py,sha256=rwgSsTreNGAq5xV3m9lbA7U5AE0XOZNdihJwW5FHz0k,12005
|
|
16
5
|
connectonion/logger.py,sha256=7xt9fT-Ubdu6zzFZ5JPwScWDo9LJehuYDn6PB3f3icg,12651
|
|
17
6
|
connectonion/prompts.py,sha256=hmbx8ACOJzystbRPQ6bMqx8BQKBKJHNJnMogtAZgDGA,5661
|
|
18
|
-
connectonion/relay.py,sha256=a8wj4UZDZpGEhvpyDuRjZJg1S1VzxqiPioQRLq1EAao,7160
|
|
19
|
-
connectonion/tool_executor.py,sha256=IPCVRS20XOd5JsZrdXRwK-gI6Xb0BtDQ3fCD0qt2dcE,10617
|
|
20
|
-
connectonion/tool_factory.py,sha256=vo4_pyhqKG_OtfpjV15oPG4zlkxn40768PW5pQVtx-g,6704
|
|
21
|
-
connectonion/tool_registry.py,sha256=rTe8RJnWXpmHXWznP468fhWvmRknk-TlF9Iz8G9_qus,4367
|
|
22
7
|
connectonion/transcribe.py,sha256=m2qd7A2qMKFAbmbLLgvcd-yUFz8FHgjUKtvtFffnK00,7730
|
|
23
|
-
connectonion/trust.py,sha256=It4ueuMvCmHOD7FwaV-jSwlonWFsFgNH1gz9fJtmfW4,6692
|
|
24
|
-
connectonion/trust_agents.py,sha256=XDedEhxGRfu9KeYhX-Z1a5tRA-2Zbwz4ztnlA2Lnaf0,2968
|
|
25
|
-
connectonion/trust_functions.py,sha256=jRgfPm5z8oy9x8IYJd20UUMCz7cc1Pd7zyqQK5SDdLc,3564
|
|
26
|
-
connectonion/usage.py,sha256=mS_J5it9NMDI1CjycNUJEnXGNXAo1lQ1ICEZvqftTpU,6205
|
|
27
|
-
connectonion/xray.py,sha256=TA_VychqQRtfSzO3RmTqnDZZNx3LjycbgUWVyMswAIw,18542
|
|
28
8
|
connectonion/cli/__init__.py,sha256=Pd1iKp0rUghs2kmdAhyp9hK8j0uWkNxOagBkdCGrG4I,55
|
|
29
9
|
connectonion/cli/docs.md,sha256=Fk_JT8jFXXDpXTvU0ZUigMW1UR6ERmX-HDheYPPRNY8,3231
|
|
30
10
|
connectonion/cli/main.py,sha256=2FWi-yhnyLQzZl_esOXYY3-u0Q1wbpdE4XG3QYoGm_Q,6893
|
|
@@ -34,12 +14,12 @@ connectonion/cli/browser_agent/prompt.md,sha256=tF0PhGcl3gkmVK1F5SG9GZwnPPXTZYWE
|
|
|
34
14
|
connectonion/cli/commands/__init__.py,sha256=IPZy9NwrE0hs4f7hIqyFM9GjFZpeCS8mC0Jf-5Ooy4c,43
|
|
35
15
|
connectonion/cli/commands/auth_commands.py,sha256=D76_0yd77d23bXRvsTAY6HOcGJswo9-6z2dRi9CR9sE,21635
|
|
36
16
|
connectonion/cli/commands/browser_commands.py,sha256=lB4N6XwP43qdcthwQWlbFU2S3INfxhRDXznAw1PSTsQ,1803
|
|
37
|
-
connectonion/cli/commands/copy_commands.py,sha256=
|
|
17
|
+
connectonion/cli/commands/copy_commands.py,sha256=f59STrC4Yy3OtYiUSz99K0zkU3tiWoTn9owP1KY09Qs,4542
|
|
38
18
|
connectonion/cli/commands/create.py,sha256=0TrsPulS6dqwr_gtIWWBQ03Q_BnNro-CV4qOV5VkHAg,22011
|
|
39
|
-
connectonion/cli/commands/deploy_commands.py,sha256=
|
|
19
|
+
connectonion/cli/commands/deploy_commands.py,sha256=l-o6XDxh5kDB0YUCb_LeVERvdUY4gUogOlNalRv1OdM,8774
|
|
40
20
|
connectonion/cli/commands/doctor_commands.py,sha256=EOk8CMclvVqLq4-Dg2JghWehH9VQnthBejrhIBX66_4,7244
|
|
41
21
|
connectonion/cli/commands/init.py,sha256=8zpY01Ux25BM6UCMvs66DRtiHKHsq7Yo9N_KOhAhOOA,20979
|
|
42
|
-
connectonion/cli/commands/project_cmd_lib.py,sha256=
|
|
22
|
+
connectonion/cli/commands/project_cmd_lib.py,sha256=SfqTpbQmYgMiUdi94Rkn1jF6hIlEnfgV0cSWqxUhJiw,32197
|
|
43
23
|
connectonion/cli/commands/reset_commands.py,sha256=FkK6tMn7QOY3X5ulTYQ7VnLfeYpStgbZ5UnnbD3zudY,7016
|
|
44
24
|
connectonion/cli/commands/status_commands.py,sha256=krUZNd1pFuU8D7UdXrUskBTlpmAdjcTWBXs0s4YJOc4,6401
|
|
45
25
|
connectonion/cli/docs/co-vibecoding-principles-docs-contexts-all-in-one.md,sha256=_RUlrj83Nbl278j3wdXeKFE1AvwixfCPdWevO7RSLRM,58816
|
|
@@ -57,18 +37,41 @@ connectonion/cli/templates/playwright/agent.py,sha256=H5qvfUgdn8b_HJ8F5ETXtHUZij
|
|
|
57
37
|
connectonion/cli/templates/playwright/prompt.md,sha256=wsvpWTzxrWYs4t4WLhXgJ7Auko32RFNe9ii4mL8IM_o,3310
|
|
58
38
|
connectonion/cli/templates/playwright/requirements.txt,sha256=oSyGEC1-DyWm3_vE1QkREeWx4odSlS-K2UjlUCTw4tM,38
|
|
59
39
|
connectonion/cli/templates/web-research/agent.py,sha256=PS50oxPg8GX8RIjjZ6iSVhKDrS00riCjTPSrP3RIFV0,3970
|
|
60
|
-
connectonion/
|
|
61
|
-
connectonion/
|
|
62
|
-
connectonion/
|
|
63
|
-
connectonion/
|
|
64
|
-
connectonion/
|
|
65
|
-
connectonion/
|
|
66
|
-
connectonion/
|
|
67
|
-
connectonion/
|
|
68
|
-
connectonion/
|
|
69
|
-
connectonion/
|
|
70
|
-
connectonion/
|
|
71
|
-
connectonion/
|
|
40
|
+
connectonion/core/__init__.py,sha256=NIUXpkxalSzbchqklnaxUsG-X5ZUNO4wdZ3lOwwzb_Q,1363
|
|
41
|
+
connectonion/core/agent.py,sha256=dKYKDHbk1RKJP0YvXPvt9w3kBemWoO5AgS5PLtW66f4,18869
|
|
42
|
+
connectonion/core/events.py,sha256=jJOMt1PhRl-ef4R8-WpAq8pUbZ8GKIl0wOB2kJUVyWg,9151
|
|
43
|
+
connectonion/core/llm.py,sha256=IzjlOT6Dj5xIplIymjcaHZ_abwE5wDHEE4pa8zjlEGY,32952
|
|
44
|
+
connectonion/core/tool_executor.py,sha256=YGvgJpkFPFIxfFEVeASfvkYLreH6kXeTFoVZ_IqVJPU,10690
|
|
45
|
+
connectonion/core/tool_factory.py,sha256=j0DoRuHoVqx8ej07c8nOOyHLPzSzCah1D3mY4P9I8yg,6853
|
|
46
|
+
connectonion/core/tool_registry.py,sha256=rTe8RJnWXpmHXWznP468fhWvmRknk-TlF9Iz8G9_qus,4367
|
|
47
|
+
connectonion/core/usage.py,sha256=mS_J5it9NMDI1CjycNUJEnXGNXAo1lQ1ICEZvqftTpU,6205
|
|
48
|
+
connectonion/debug/__init__.py,sha256=gU2Ku9Nup70LxTygBauhxuhHJWRRtT7h-GKbLTvhlJQ,2111
|
|
49
|
+
connectonion/debug/auto_debug.py,sha256=gjTfUcYmbeJg-HGsOsEovy3dv0l4om4HqtxZEdMMCxE,16286
|
|
50
|
+
connectonion/debug/auto_debug_exception.py,sha256=VSHPn5UmpHsNlllArXuBpc8CjFn5X1FO4r7Eag-7WZg,8155
|
|
51
|
+
connectonion/debug/auto_debug_ui.py,sha256=kw8zMTARo0JIpXSzzpQUH-CIKkjuacJJwq6vXKDuDEM,41742
|
|
52
|
+
connectonion/debug/decorators.py,sha256=YFmZMptcchIgNriKFf_vOyacor5i_j6Cy_igTJhdKm4,7141
|
|
53
|
+
connectonion/debug/xray.py,sha256=fw9HlUw5qqBRtjm2c6xOSSiyUZ8xLMU81LVqNeHyldU,18580
|
|
54
|
+
connectonion/debug/debug_explainer/__init__.py,sha256=A_rNwGD-Km3iA2U_D9QbQBXjlxSgY_qKmBWvjCpflcs,351
|
|
55
|
+
connectonion/debug/debug_explainer/explain_agent.py,sha256=LW78PZzLQkgMh0SN-nbnuMzh1svE_AEOvbu6k-Rqnpk,4982
|
|
56
|
+
connectonion/debug/debug_explainer/explain_context.py,sha256=TgfX4y2ndLr6U9EIruNYDd9Krgqf9NFl-fOkZ4JFQFs,11352
|
|
57
|
+
connectonion/debug/debug_explainer/explainer_prompt.md,sha256=FnWSYlSn0GvuL6qhstS85Qbg8Fti7GuOeWytwwQpZ38,1325
|
|
58
|
+
connectonion/debug/debug_explainer/root_cause_analysis_prompt.md,sha256=5u_kV8vFjpFDcdTq8r_1tWgv_YRkZcXjtriVQYa1x1s,1412
|
|
59
|
+
connectonion/debug/execution_analyzer/__init__.py,sha256=RREt9mwWs4lEbyHfHqoL3BB-39MEgPjNNqlw2VinKxI,310
|
|
60
|
+
connectonion/debug/execution_analyzer/execution_analysis.py,sha256=yzc-Cq7N0SPIYwv77aiQzSP996AoLaKqvQZkyfp6kWw,3713
|
|
61
|
+
connectonion/debug/execution_analyzer/execution_analysis_prompt.md,sha256=zmKAFHJzCiYkNHxpuK2Nak-7cdswZasqAJkRV_in0dU,1459
|
|
62
|
+
connectonion/debug/runtime_inspector/__init__.py,sha256=6Hf88LTZ1iEAnNzfTkjp7iRb7I7YByUssv8Jsy3tRgk,365
|
|
63
|
+
connectonion/debug/runtime_inspector/agent.py,sha256=kGXncq8AOffUQ_fuj9Sw15of6_mtsvrsYNZ5-lU74ao,2510
|
|
64
|
+
connectonion/debug/runtime_inspector/runtime_inspector.py,sha256=rxFOqTxSvyKxqagYL4V2Pf-ii0Ie8l14a5xHzgIb810,15336
|
|
65
|
+
connectonion/debug/runtime_inspector/prompts/debug_assistant.md,sha256=sR17NHwBY-8EgIZwK4AoTKW9D6vEDUf1Aq7i936tqco,2816
|
|
66
|
+
connectonion/network/__init__.py,sha256=e8bBYwY36tB5xVepsJG3j9lGz_JRPSkkubLHU30mr_Y,928
|
|
67
|
+
connectonion/network/announce.py,sha256=roS_PIYef7g-HlXhIkUrCEtGNUDBEStqFodCU8qEy5M,3366
|
|
68
|
+
connectonion/network/asgi.py,sha256=VTMwwEWLq5RYvIufRImMcv-AB5D5pZmM8INaXqwUt4Q,9621
|
|
69
|
+
connectonion/network/connect.py,sha256=w6moVt1alBZjHoGgHzaWMf9SgHVPlN1drO4lqWeYWyY,9795
|
|
70
|
+
connectonion/network/host.py,sha256=ZnmXkLOPb5DUjZnCHtLbNcEeja3UWHJ1XuiRTex6k50,20277
|
|
71
|
+
connectonion/network/relay.py,sha256=a8wj4UZDZpGEhvpyDuRjZJg1S1VzxqiPioQRLq1EAao,7160
|
|
72
|
+
connectonion/network/trust.py,sha256=yGnmFq5QVxCqdXgpQD7PPZPrYj3_nhRx0iorVD8Htjg,6698
|
|
73
|
+
connectonion/network/trust_agents.py,sha256=XDedEhxGRfu9KeYhX-Z1a5tRA-2Zbwz4ztnlA2Lnaf0,2968
|
|
74
|
+
connectonion/network/trust_functions.py,sha256=jRgfPm5z8oy9x8IYJd20UUMCz7cc1Pd7zyqQK5SDdLc,3564
|
|
72
75
|
connectonion/prompt_files/__init__.py,sha256=5o5xg0VzZt4e0O4JKh7AO7gbflkw78oNM37yC3VqFRU,56
|
|
73
76
|
connectonion/prompt_files/analyze_contact.md,sha256=ZTCUhO8mM1mbYswfz4zjBxlv4r0DICLoYm0YaQBpiXk,2110
|
|
74
77
|
connectonion/prompt_files/eval_expected.md,sha256=ZnVmyF9S9m49UzTKCMajJhfGaxUhUkDxDm75xDYNLPs,435
|
|
@@ -76,7 +79,8 @@ connectonion/prompt_files/react_evaluate.md,sha256=1qzq_ShlhWUQnh8PkdMl9IpHSwR67
|
|
|
76
79
|
connectonion/prompt_files/react_plan.md,sha256=QwEDnHsCs1A9AGTyuA1puLRHT0MkUrNEAbVhF3yWNEc,492
|
|
77
80
|
connectonion/prompt_files/reflect.md,sha256=aMaWNbHCyxX3AtqyUrrJurAG6w45lcSo05RrAv6UiIM,627
|
|
78
81
|
connectonion/static/docs.html,sha256=rSffkCAy2fA512XcMC6z1wyZH9iYeAsSP213G3l1OOk,31085
|
|
79
|
-
connectonion/tui/__init__.py,sha256=
|
|
82
|
+
connectonion/tui/__init__.py,sha256=q8N5Z5lfTmRx-g_m6KfEv7IHOMkChz2PquUGP77vwlg,2711
|
|
83
|
+
connectonion/tui/chat.py,sha256=0vIxfPcf7hWw3pi1mO6AuF4sIEwxKi-Mw25HGnotX80,20941
|
|
80
84
|
connectonion/tui/divider.py,sha256=pKOj7Y3lPwB4TxoWs9J7Pi1axyzMELuw5TIARLyud0o,1018
|
|
81
85
|
connectonion/tui/dropdown.py,sha256=fhxfX2N4vjYvwVPbExcwE23lpgk55xTgmeKyFUIaOE8,8127
|
|
82
86
|
connectonion/tui/footer.py,sha256=EwBCRjxmsBK5xik-jFGkN93AUwLQQZM0m00o7PE9H74,694
|
|
@@ -87,14 +91,14 @@ connectonion/tui/pick.py,sha256=54oDYvZc0w8V1dYqdAW4RIHJMaCaujHWtOA77KL66JA,5084
|
|
|
87
91
|
connectonion/tui/providers.py,sha256=czD130jKA9FYUCkLp3eSZ4o7jF7-58uAvCC_9COzApI,5117
|
|
88
92
|
connectonion/tui/status_bar.py,sha256=DVqDdc6fr9yHDIDGgLGIuR_4yaPzKPM-kAUJ_dXcNAk,4774
|
|
89
93
|
connectonion/useful_events_handlers/__init__.py,sha256=EMgvTx-MtvMZXtCpyTJkJpSSKJNcTqRKhLmQ8qDoobk,386
|
|
90
|
-
connectonion/useful_events_handlers/reflect.py,sha256=
|
|
94
|
+
connectonion/useful_events_handlers/reflect.py,sha256=5ZRkc5t-E9KgU02bp8GsquoTAkYG0x71ygARlxr1-fc,3418
|
|
91
95
|
connectonion/useful_plugins/__init__.py,sha256=gWFzMmd5mJjAj_rTGNL4PGZYjEWddZmRD5HlMP81lAQ,1259
|
|
92
|
-
connectonion/useful_plugins/calendar_plugin.py,sha256=
|
|
93
|
-
connectonion/useful_plugins/eval.py,sha256=
|
|
94
|
-
connectonion/useful_plugins/gmail_plugin.py,sha256=
|
|
95
|
-
connectonion/useful_plugins/image_result_formatter.py,sha256=
|
|
96
|
-
connectonion/useful_plugins/re_act.py,sha256=
|
|
97
|
-
connectonion/useful_plugins/shell_approval.py,sha256=
|
|
96
|
+
connectonion/useful_plugins/calendar_plugin.py,sha256=PoQoOfLcprDDBRrt1Ykzlh2RDiOofIyL7tO-hERkYV8,6004
|
|
97
|
+
connectonion/useful_plugins/eval.py,sha256=E0bdzVHRQOnJFcF1jxbvPr0AtEcXux7h9ao5uawsXHQ,4940
|
|
98
|
+
connectonion/useful_plugins/gmail_plugin.py,sha256=xuPR13lnXxn-12zncHPoMNApYJ_zxuoehuavvdGvjvE,5715
|
|
99
|
+
connectonion/useful_plugins/image_result_formatter.py,sha256=d6ME-bVRiSbXoTvIAnwqMyDkJ-xVExOBqbdG9N4ZASE,5342
|
|
100
|
+
connectonion/useful_plugins/re_act.py,sha256=aWBj3lr2d6It3XYAOQp0LbQneM9CPXLxQHW16MgJNKM,3011
|
|
101
|
+
connectonion/useful_plugins/shell_approval.py,sha256=mNPyLcdz8F5Hek77ABGYCdpiefRziyFwc_L8TFVcyoo,6324
|
|
98
102
|
connectonion/useful_tools/__init__.py,sha256=ZG7DVNNSoY7lvyREXleRzqpp53OjttMSiNMS6uA3F4M,1743
|
|
99
103
|
connectonion/useful_tools/diff_writer.py,sha256=ZhuSmTvJRd7RmavCRN9Xp-8Q07mBAgV9_HufWd-i9Lc,6796
|
|
100
104
|
connectonion/useful_tools/get_emails.py,sha256=cechjvRkPH2K-mjoZEnvo1Z6uD1YsVNYQSu56elERm0,6300
|
|
@@ -109,7 +113,7 @@ connectonion/useful_tools/slash_command.py,sha256=VKl7SKLyaxHcHwfE8rgzBCQ2-KQtL0
|
|
|
109
113
|
connectonion/useful_tools/terminal.py,sha256=PtzGHN6vnWROmssi37YOZ5U-d0Z7Fe79bocoKAngoxg,9330
|
|
110
114
|
connectonion/useful_tools/todo_list.py,sha256=wVEt4kt-MczIcP3xvKelfshGHZ6EATpDFzQx0zov8cw,7483
|
|
111
115
|
connectonion/useful_tools/web_fetch.py,sha256=CysJLOdDIkbMVJ12Dj3WgsytLu1-o2wrwNopqA_S1jk,7253
|
|
112
|
-
connectonion-0.
|
|
113
|
-
connectonion-0.
|
|
114
|
-
connectonion-0.
|
|
115
|
-
connectonion-0.
|
|
116
|
+
connectonion-0.6.0.dist-info/METADATA,sha256=VgB7VV7LFKUeAfg3Q_VnU9qmQAyFKvQmxEiSUpccIOA,21932
|
|
117
|
+
connectonion-0.6.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
118
|
+
connectonion-0.6.0.dist-info/entry_points.txt,sha256=XDB-kVN7Qgy4DmYTkjQB_O6hZeUND-SqmZbdoQPn6WA,90
|
|
119
|
+
connectonion-0.6.0.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"""Debug agent for enhanced AI-powered exception analysis with runtime inspection.
|
|
2
|
-
|
|
3
|
-
A specialized agent that uses RuntimeInspector to experiment, test, and
|
|
4
|
-
validate fixes using the actual data that caused the crash.
|
|
5
|
-
"""
|
|
6
|
-
|
|
7
|
-
from .agent import create_debug_agent
|
|
8
|
-
from .runtime_inspector import RuntimeInspector
|
|
9
|
-
|
|
10
|
-
__all__ = [
|
|
11
|
-
"create_debug_agent",
|
|
12
|
-
"RuntimeInspector"
|
|
13
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|