llmwiki-bridge-start 0.0.1 → 0.0.2
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/package.json +1 -1
- package/src/index.mjs +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ transcripts are unchanged. Use `--no-clear-screen` or
|
|
|
71
71
|
visible. If
|
|
72
72
|
you opt in, quickstart uses an already running bridge or prints copy-pasteable
|
|
73
73
|
PowerShell and POSIX manual-start examples such as
|
|
74
|
-
`LLMWIKI_AGENT_BRIDGE_HOST='127.0.0.1' LLMWIKI_AGENT_BRIDGE_PORT='8788' npx --yes llmwiki-agent-bridge@0.2.
|
|
74
|
+
`LLMWIKI_AGENT_BRIDGE_HOST='127.0.0.1' LLMWIKI_AGENT_BRIDGE_PORT='8788' npx --yes llmwiki-agent-bridge@0.2.1`;
|
|
75
75
|
custom `--bridge http://host:port` values are reflected in those env
|
|
76
76
|
assignments. The command does not install a global package.
|
|
77
77
|
Before starting that bridge command, quickstart asks how to configure the LLM
|
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -27,7 +27,7 @@ const SOURCE_PORT_PROBE_MAX_ATTEMPTS = 200
|
|
|
27
27
|
const DEFAULT_DISCOVERY_PROGRESS_INTERVAL_MS = 1000
|
|
28
28
|
const DEFAULT_DISCOVERY_PROGRESS_MESSAGE = 'Searching local folders for LLMWiki candidates...'
|
|
29
29
|
const DEFAULT_TERMINAL_ROW_FALLBACK = 1000
|
|
30
|
-
const DEFAULT_BRIDGE_PACKAGE_SPEC = 'llmwiki-agent-bridge@0.2.
|
|
30
|
+
const DEFAULT_BRIDGE_PACKAGE_SPEC = 'llmwiki-agent-bridge@0.2.1'
|
|
31
31
|
const DEFAULT_BRIDGE_RUNTIME_BASE_URL = 'http://127.0.0.1:8642/v1'
|
|
32
32
|
const DEFAULT_RUNTIME_FRAMEWORK_DETECTION_TIMEOUT_MS = 1500
|
|
33
33
|
const DEFAULT_RUNTIME_INSTALL_TIMEOUT_MS = 10 * 60 * 1000
|