@objectstack/service-settings 6.8.0 → 6.9.0

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 CHANGED
@@ -60,3 +60,7 @@ the following built-in manifests are pre-registered out of the box:
60
60
  | `storage` | `StorageServicePlugin` | Local FS / S3 + encrypted secret + `storage/test` |
61
61
  | `branding` | (built-in fallback) | Workspace name, logo, accent colour |
62
62
  | `feature_flags`| (built-in fallback) | Opt-in experimental features |
63
+
64
+ ## License
65
+
66
+ Apache-2.0. See [LICENSING.md](../../../LICENSING.md).
package/dist/index.cjs CHANGED
@@ -1473,6 +1473,39 @@ var manifest3 = {
1473
1473
  max: 6e5,
1474
1474
  visible: "${data.provider !== 'memory'}"
1475
1475
  },
1476
+ // ── Conversation titles ──────────────────────────────────────
1477
+ // After the first assistant turn lands, service-ai fires a one-shot
1478
+ // LLM call that asks the model to produce a ≤16-char title and
1479
+ // PATCHes it onto the conversation. Without this every row in the
1480
+ // sidebar shows "New conversation" + a truncated preview.
1481
+ {
1482
+ type: "group",
1483
+ id: "titles",
1484
+ label: "Conversation titles",
1485
+ required: false,
1486
+ description: "Auto-generate a short summary title for new conversations.",
1487
+ visible: "${data.provider !== 'memory'}"
1488
+ },
1489
+ {
1490
+ type: "toggle",
1491
+ key: "title_generation_enabled",
1492
+ label: "Auto-summarize conversation titles",
1493
+ required: false,
1494
+ default: true,
1495
+ description: "When on, the LLM is asked to produce a short title after the first assistant reply. Disable to save tokens, or leave the title blank to let users name conversations manually.",
1496
+ visible: "${data.provider !== 'memory'}"
1497
+ },
1498
+ {
1499
+ type: "number",
1500
+ key: "title_max_length",
1501
+ label: "Title max length (chars)",
1502
+ required: false,
1503
+ default: 16,
1504
+ min: 8,
1505
+ max: 80,
1506
+ description: "Hard cap on the generated title. Anything longer is truncated server-side.",
1507
+ visible: "${data.provider !== 'memory' && data.title_generation_enabled !== false}"
1508
+ },
1476
1509
  // ── Observability ────────────────────────────────────────────
1477
1510
  { type: "group", id: "observability", label: "Observability", required: false },
1478
1511
  {