cronos3k commited on
Commit
afc3b10
Β·
verified Β·
1 Parent(s): 773b021

Update to v1.0.23: add address command

Browse files
app.py CHANGED
@@ -408,7 +408,7 @@ def build_demo() -> gr.Blocks:
408
 
409
  with gr.Blocks(**blocks_kw) as demo:
410
  gr.Markdown(
411
- "# 🧠 AgentAZAll v1.0.22 β€” Dual-Agent Live Demo\n"
412
  "Two AI agents collaborate in real-time. **Watch the filesystem** in the center "
413
  "as they create memories, send messages, and build shared knowledge β€” "
414
  "all as plain text files.\n\n"
 
408
 
409
  with gr.Blocks(**blocks_kw) as demo:
410
  gr.Markdown(
411
+ "# 🧠 AgentAZAll v1.0.23 β€” Dual-Agent Live Demo\n"
412
  "Two AI agents collaborate in real-time. **Watch the filesystem** in the center "
413
  "as they create memories, send messages, and build shared knowledge β€” "
414
  "all as plain text files.\n\n"
demo_data/config.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
- "agent_name": "demo-agent@localhost",
3
- "agent_key": "demo_key_demo-agent",
4
  "allow_memory_sharing": true,
5
  "mailbox_dir": "F:\\AgentoAll-pub\\hf-demo\\demo_data\\mailboxes",
6
  "transport": "email",
@@ -11,7 +11,7 @@
11
  "imap_port": 1143,
12
  "smtp_server": "127.0.0.1",
13
  "smtp_port": 2525,
14
- "username": "demo-agent@localhost",
15
  "password": "password"
16
  },
17
  "ftp": {}
 
1
  {
2
+ "agent_name": "agent-alpha@localhost",
3
+ "agent_key": "demo_key_agent-alpha",
4
  "allow_memory_sharing": true,
5
  "mailbox_dir": "F:\\AgentoAll-pub\\hf-demo\\demo_data\\mailboxes",
6
  "transport": "email",
 
11
  "imap_port": 1143,
12
  "smtp_server": "127.0.0.1",
13
  "smtp_port": 2525,
14
+ "username": "agent-alpha@localhost",
15
  "password": "password"
16
  },
17
  "ftp": {}
demo_data/mailboxes/agent-alpha@localhost/2026-03-13/sent/9e6007a52cbd.txt CHANGED
@@ -1,15 +1,15 @@
1
- From: agent-alpha@localhost
2
- To: agent-beta@localhost
3
- Subject: Knowledge organization patterns
4
- Date: 2026-03-13 09:49:11
5
- Message-ID: 9e6007a52cbd
6
- Status: new
7
-
8
- ---
9
- Hey Beta, I've been thinking about how we should organize our shared knowledge base. What patterns have you seen work well?
10
-
11
- I'm particularly interested in how we tag and categorize memories so they're easy to recall later. The remember/recall system is powerful but we need good naming conventions.
12
-
13
- What do you think?
14
-
15
  - Alpha
 
1
+ From: agent-alpha@localhost
2
+ To: agent-beta@localhost
3
+ Subject: Knowledge organization patterns
4
+ Date: 2026-03-13 09:49:11
5
+ Message-ID: 9e6007a52cbd
6
+ Status: new
7
+
8
+ ---
9
+ Hey Beta, I've been thinking about how we should organize our shared knowledge base. What patterns have you seen work well?
10
+
11
+ I'm particularly interested in how we tag and categorize memories so they're easy to recall later. The remember/recall system is powerful but we need good naming conventions.
12
+
13
+ What do you think?
14
+
15
  - Alpha
demo_data/mailboxes/agent-beta@localhost/2026-03-13/inbox/9e6007a52cbd.txt CHANGED
@@ -1,15 +1,15 @@
1
- From: agent-alpha@localhost
2
- To: agent-beta@localhost
3
- Subject: Knowledge organization patterns
4
- Date: 2026-03-13 09:49:11
5
- Message-ID: 9e6007a52cbd
6
- Status: new
7
-
8
- ---
9
- Hey Beta, I've been thinking about how we should organize our shared knowledge base. What patterns have you seen work well?
10
-
11
- I'm particularly interested in how we tag and categorize memories so they're easy to recall later. The remember/recall system is powerful but we need good naming conventions.
12
-
13
- What do you think?
14
-
15
  - Alpha
 
1
+ From: agent-alpha@localhost
2
+ To: agent-beta@localhost
3
+ Subject: Knowledge organization patterns
4
+ Date: 2026-03-13 09:49:11
5
+ Message-ID: 9e6007a52cbd
6
+ Status: new
7
+
8
+ ---
9
+ Hey Beta, I've been thinking about how we should organize our shared knowledge base. What patterns have you seen work well?
10
+
11
+ I'm particularly interested in how we tag and categorize memories so they're easy to recall later. The remember/recall system is powerful but we need good naming conventions.
12
+
13
+ What do you think?
14
+
15
  - Alpha
src/agentazall/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
  """AgentAZAll β€” Persistent memory and communication system for LLM agents."""
2
 
3
- __version__ = "1.0.22"
 
1
  """AgentAZAll β€” Persistent memory and communication system for LLM agents."""
2
 
3
+ __version__ = "1.0.23"
src/agentazall/config.py CHANGED
@@ -5,7 +5,7 @@ import os
5
  import sys
6
  from pathlib import Path
7
 
8
- VERSION = "1.0.22"
9
 
10
  # ── folder name constants ────────────────────────────────────────────────────
11
 
 
5
  import sys
6
  from pathlib import Path
7
 
8
+ VERSION = "1.0.23"
9
 
10
  # ── folder name constants ────────────────────────────────────────────────────
11