@objectstack/service-settings 6.8.1 → 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/dist/index.cjs +33 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1415,6 +1415,39 @@ var manifest3 = {
|
|
|
1415
1415
|
max: 6e5,
|
|
1416
1416
|
visible: "${data.provider !== 'memory'}"
|
|
1417
1417
|
},
|
|
1418
|
+
// ── Conversation titles ──────────────────────────────────────
|
|
1419
|
+
// After the first assistant turn lands, service-ai fires a one-shot
|
|
1420
|
+
// LLM call that asks the model to produce a ≤16-char title and
|
|
1421
|
+
// PATCHes it onto the conversation. Without this every row in the
|
|
1422
|
+
// sidebar shows "New conversation" + a truncated preview.
|
|
1423
|
+
{
|
|
1424
|
+
type: "group",
|
|
1425
|
+
id: "titles",
|
|
1426
|
+
label: "Conversation titles",
|
|
1427
|
+
required: false,
|
|
1428
|
+
description: "Auto-generate a short summary title for new conversations.",
|
|
1429
|
+
visible: "${data.provider !== 'memory'}"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
type: "toggle",
|
|
1433
|
+
key: "title_generation_enabled",
|
|
1434
|
+
label: "Auto-summarize conversation titles",
|
|
1435
|
+
required: false,
|
|
1436
|
+
default: true,
|
|
1437
|
+
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.",
|
|
1438
|
+
visible: "${data.provider !== 'memory'}"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
type: "number",
|
|
1442
|
+
key: "title_max_length",
|
|
1443
|
+
label: "Title max length (chars)",
|
|
1444
|
+
required: false,
|
|
1445
|
+
default: 16,
|
|
1446
|
+
min: 8,
|
|
1447
|
+
max: 80,
|
|
1448
|
+
description: "Hard cap on the generated title. Anything longer is truncated server-side.",
|
|
1449
|
+
visible: "${data.provider !== 'memory' && data.title_generation_enabled !== false}"
|
|
1450
|
+
},
|
|
1418
1451
|
// ── Observability ────────────────────────────────────────────
|
|
1419
1452
|
{ type: "group", id: "observability", label: "Observability", required: false },
|
|
1420
1453
|
{
|