@inline-chat/hermes-agent-adapter 0.0.3 → 0.0.4
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 +2 -2
- package/package.json +2 -2
- package/plugin/inline/plugin.yaml +1 -1
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ uv run ./hermes plugins list --plain --no-bundled
|
|
|
116
116
|
Expected local output includes:
|
|
117
117
|
|
|
118
118
|
```text
|
|
119
|
-
enabled user 0.0.
|
|
119
|
+
enabled user 0.0.4 inline-platform
|
|
120
120
|
```
|
|
121
121
|
|
|
122
122
|
## Update Or Reinstall
|
|
@@ -142,7 +142,7 @@ mismatch, rerun the same command after rebuilding or upgrading the package.
|
|
|
142
142
|
against Hermes Agent `0.17.0` from source commit `824f2279`.
|
|
143
143
|
- Node.js: `>=20` is required for the bundled sidecar. Hermes-managed Node 22,
|
|
144
144
|
system Node, or an explicit `INLINE_NODE_BIN` path all work.
|
|
145
|
-
- Inline transport: the sidecar uses `@inline-chat/realtime-sdk@0.0.
|
|
145
|
+
- Inline transport: the sidecar uses `@inline-chat/realtime-sdk@0.0.13` and is
|
|
146
146
|
bundled into the npm package, so Hermes startup does not run `npm install`.
|
|
147
147
|
- Live sends require a valid Inline user or bot token in `INLINE_TOKEN`,
|
|
148
148
|
`INLINE_BOT_TOKEN`, `platforms.inline.token`, or `inline.token`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inline-chat/hermes-agent-adapter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Hermes Agent platform adapter for Inline, with a native Python plugin and bundled Inline realtime sidecar.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"check": "bun run typecheck && bun run lint && bun run test"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@inline-chat/realtime-sdk": "0.0.
|
|
62
|
+
"@inline-chat/realtime-sdk": "0.0.13",
|
|
63
63
|
"yaml": "2.9.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|