@yeaft/webchat-agent 1.0.379 → 1.0.380
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/connection/message-router.js +3 -3
- package/local-runtime/version.json +1 -1
- package/local-runtime/web/app.bundle.js +69 -69
- package/local-runtime/web/app.bundle.js.gz +0 -0
- package/local-runtime/web/index.html +1 -1
- package/package.json +1 -1
- package/yeaft/engine.js +104 -39
- package/yeaft/llm/adapter.js +15 -0
- package/yeaft/llm/router.js +83 -24
- package/yeaft/llm/usage-accounting.js +28 -2
- package/yeaft/sessions/session-config.js +0 -2
- package/yeaft/web-bridge.js +54 -21
- package/yeaft/work-center/runner.js +51 -3
- package/yeaft/work-center/store.js +3 -1
|
@@ -390,9 +390,9 @@ export async function handleMessage(msg) {
|
|
|
390
390
|
}
|
|
391
391
|
|
|
392
392
|
case 'update_llm_config': {
|
|
393
|
-
//
|
|
394
|
-
//
|
|
395
|
-
//
|
|
393
|
+
// The bridge publishes the replacement config and provider index at the
|
|
394
|
+
// next Engine loop boundary. The frontend must not reset or abort the
|
|
395
|
+
// active Session turn after a successful save.
|
|
396
396
|
await applyLlmConfigUpdate(msg);
|
|
397
397
|
break;
|
|
398
398
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.
|
|
1
|
+
{"version":"1.0.380"}
|