@almadar/core 8.2.0 → 8.3.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/factory/index.d.ts +16 -5
- package/package.json +1 -1
package/dist/factory/index.d.ts
CHANGED
|
@@ -50,14 +50,25 @@ interface FactoryConfigParam {
|
|
|
50
50
|
* supplied. Pre-fills the form widget so users see what they're
|
|
51
51
|
* about to change. */
|
|
52
52
|
default?: FactoryParamValue;
|
|
53
|
-
/** Optional human-friendly question prompt.
|
|
54
|
-
* `.lolo` `@label` annotation. */
|
|
53
|
+
/** Optional human-friendly question prompt. Lifted from the source
|
|
54
|
+
* `.lolo` `@label "..."` annotation. */
|
|
55
55
|
label?: string;
|
|
56
|
-
/** Optional help-text.
|
|
56
|
+
/** Optional help-text. Lifted from `.lolo` `@description "..."`. */
|
|
57
57
|
description?: string;
|
|
58
|
-
/** Optional closed-enum value set.
|
|
59
|
-
* annotation. */
|
|
58
|
+
/** Optional closed-enum value set. Lifted from `.lolo` enum syntax. */
|
|
60
59
|
enumValues?: ReadonlyArray<string>;
|
|
60
|
+
/** Comma-separated user-vocabulary synonyms. Authored in `.lolo` as
|
|
61
|
+
* `@synonyms "..."` next to the knob declaration. Used by the agent's
|
|
62
|
+
* catalog-summary prompt (so the LLM connects user phrases to knob
|
|
63
|
+
* names) and by the publish-time knob-embeddings bake (so cosine
|
|
64
|
+
* narrowing recalls knobs voiced via synonym).
|
|
65
|
+
*
|
|
66
|
+
* Example for the `height` knob on `std-graphs`:
|
|
67
|
+
* `@synonyms "taller, shorter, vertical size, pixel height"`
|
|
68
|
+
*
|
|
69
|
+
* Stays a single free-form string; consumers decide their own
|
|
70
|
+
* splitting/formatting policy. */
|
|
71
|
+
synonyms?: string;
|
|
61
72
|
}
|
|
62
73
|
/**
|
|
63
74
|
* One trait the factory composes into the orbital. The projector reads
|