codeep 1.2.45 → 1.2.46

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.
@@ -255,6 +255,14 @@ export function startAcpServer() {
255
255
  config.set('model', value);
256
256
  }
257
257
  transport.respond(msg.id, {});
258
+ // Confirm the new value back to Zed so its UI state stays in sync
259
+ transport.notify('session/update', {
260
+ sessionId,
261
+ update: {
262
+ sessionUpdate: 'config_option_update',
263
+ configOptions: buildConfigOptions(),
264
+ },
265
+ });
258
266
  }
259
267
  // ── session/prompt ──────────────────────────────────────────────────────────
260
268
  function handleSessionPrompt(msg) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.2.45",
3
+ "version": "1.2.46",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",