connectonion 0.6.0__py3-none-any.whl → 0.6.2__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 CHANGED
@@ -1,6 +1,6 @@
1
1
  """ConnectOnion - A simple agent framework with behavior tracking."""
2
2
 
3
- __version__ = "0.6.0"
3
+ __version__ = "0.6.2"
4
4
 
5
5
  # Auto-load .env files for the entire framework
6
6
  from dotenv import load_dotenv
@@ -28,7 +28,7 @@ from .transcribe import transcribe
28
28
  from .prompts import load_system_prompt
29
29
  from .debug import xray, auto_debug_exception, replay, xray_replay
30
30
  from .useful_tools import send_email, get_emails, mark_read, mark_unread, Memory, Gmail, GoogleCalendar, Outlook, MicrosoftCalendar, WebFetch, Shell, DiffWriter, pick, yes_no, autocomplete, TodoList, SlashCommand
31
- from .network import connect, RemoteAgent, host, create_app
31
+ from .network import connect, RemoteAgent, host, create_app, Connection
32
32
  from .network import relay, announce
33
33
  from . import address
34
34
 
@@ -65,6 +65,7 @@ __all__ = [
65
65
  "RemoteAgent",
66
66
  "host",
67
67
  "create_app",
68
+ "Connection",
68
69
  "relay",
69
70
  "announce",
70
71
  "address",