@hydra-acp/browser 0.1.14 → 0.1.16
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 +1 -1
- package/dist/ui/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ The extension exposes:
|
|
|
103
103
|
Lifecycle is managed with
|
|
104
104
|
`hydra-acp extensions start|stop|restart hydra-acp-browser` —
|
|
105
105
|
`restart` is the right call after `npm run build`. Tail the log
|
|
106
|
-
with `hydra-acp extensions
|
|
106
|
+
with `hydra-acp extensions log hydra-acp-browser -f` (the open URL
|
|
107
107
|
shows up there on first launch).
|
|
108
108
|
|
|
109
109
|
3. **Run standalone (alternative).** Set `HYDRA_TOKEN` in
|
package/dist/ui/index.html
CHANGED
|
@@ -11696,7 +11696,7 @@ pre code { background: transparent; padding: 0; }
|
|
|
11696
11696
|
function agentWithModel(agent, model) {
|
|
11697
11697
|
const a = agent || "?";
|
|
11698
11698
|
const m = shortenModel(model);
|
|
11699
|
-
return m ? `${a}
|
|
11699
|
+
return m ? `${a}\u2022${m}` : a;
|
|
11700
11700
|
}
|
|
11701
11701
|
function formatRelativeAge(iso, now = Date.now()) {
|
|
11702
11702
|
if (!iso) return "?";
|