@inline-chat/hermes-agent-adapter 0.0.1 → 0.0.3
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.
- package/README.md +44 -13
- package/dist/install.js +72 -72
- package/package.json +5 -5
- package/plugin/inline/adapter.py +773 -56
- package/plugin/inline/plugin.yaml +29 -5
- package/plugin/inline/sidecar/index.mjs +342 -65
- package/plugin/inline/tools.py +99 -32
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: inline-platform
|
|
2
2
|
label: Inline
|
|
3
3
|
kind: platform
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
description: >
|
|
6
6
|
Inline platform adapter for Hermes Agent. The adapter runs as a native
|
|
7
7
|
Hermes Python platform plugin and supervises a local Node sidecar that uses
|
|
@@ -63,11 +63,11 @@ optional_env:
|
|
|
63
63
|
prompt: "Allowed group sender ids"
|
|
64
64
|
password: false
|
|
65
65
|
- name: INLINE_REQUIRE_MENTION
|
|
66
|
-
description: "Require a mention/wake word in group chats (default true)"
|
|
66
|
+
description: "Require a mention/wake word in group chats. Replies to the bot and followed eligible reply/fresh threads can continue without one unless strict mention is enabled (default true)."
|
|
67
67
|
prompt: "Require group mention? (true/false)"
|
|
68
68
|
password: false
|
|
69
69
|
- name: INLINE_STRICT_MENTION
|
|
70
|
-
description: "Require an explicit mention/wake word on every group-chat turn, including replies to the bot (true/false, default false)"
|
|
70
|
+
description: "Require an explicit mention/wake word on every group-chat turn, including replies to the bot and followed threads (true/false, default false)"
|
|
71
71
|
prompt: "Require every group turn to mention Hermes? (true/false)"
|
|
72
72
|
password: false
|
|
73
73
|
- name: INLINE_ALLOWED_CHATS
|
|
@@ -79,8 +79,32 @@ optional_env:
|
|
|
79
79
|
prompt: "Free-response Inline chat ids"
|
|
80
80
|
password: false
|
|
81
81
|
- name: INLINE_REPLY_THREADS
|
|
82
|
-
description: "
|
|
83
|
-
prompt: "Reply
|
|
82
|
+
description: "Reply-thread mode: auto, on, or off. Auto creates child reply threads only for large parent chats or explicit thread requests (default auto)."
|
|
83
|
+
prompt: "Reply-thread mode (auto/on/off)"
|
|
84
|
+
password: false
|
|
85
|
+
- name: INLINE_CONTEXT_BACKFILL
|
|
86
|
+
description: "Automatic context mode: selective, off, or always (default selective)"
|
|
87
|
+
prompt: "Inline context backfill mode"
|
|
88
|
+
password: false
|
|
89
|
+
- name: INLINE_THREAD_CONTEXT_LIMIT
|
|
90
|
+
description: "Maximum messages for selective thread or mention-gap context, 0-100 (default 30)"
|
|
91
|
+
prompt: "Thread context limit"
|
|
92
|
+
password: false
|
|
93
|
+
- name: INLINE_REPLY_CONTEXT_LIMIT
|
|
94
|
+
description: "Maximum messages around a replied-to message, 0-50 (default 10)"
|
|
95
|
+
prompt: "Reply context limit"
|
|
96
|
+
password: false
|
|
97
|
+
- name: INLINE_OBSERVED_CONTEXT_LIMIT
|
|
98
|
+
description: "Maximum unmentioned group messages kept for observed context, 0-100 (default 20)"
|
|
99
|
+
prompt: "Observed context limit"
|
|
100
|
+
password: false
|
|
101
|
+
- name: INLINE_OBSERVE_UNMENTIONED_MESSAGES
|
|
102
|
+
description: "Buffer unmentioned group messages that pass policy but do not wake the bot (true/false, default true)"
|
|
103
|
+
prompt: "Observe unmentioned group context? (true/false)"
|
|
104
|
+
password: false
|
|
105
|
+
- name: INLINE_CONTEXT_HISTORY_LIMIT
|
|
106
|
+
description: "Legacy compatibility shortcut: 0 disables automatic history, 1-20 restores always-on recent history"
|
|
107
|
+
prompt: "Legacy context history limit"
|
|
84
108
|
password: false
|
|
85
109
|
- name: INLINE_SYSTEM_EVENTS
|
|
86
110
|
description: "Deliver Inline lifecycle events such as edits, deletes, and participant changes as synthetic messages (true/false, default false)"
|