@livx.cc/agentx 0.99.1 → 0.99.2
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/cli.js +18 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4742,7 +4742,21 @@ var EMOTIONS = [
|
|
|
4742
4742
|
"confident",
|
|
4743
4743
|
"skeptical",
|
|
4744
4744
|
"contemplative",
|
|
4745
|
-
"determined"
|
|
4745
|
+
"determined",
|
|
4746
|
+
// remaining sonic-3 vocabulary — without these a valid model tag would be DROPPED (flat delivery).
|
|
4747
|
+
"joking",
|
|
4748
|
+
"trust",
|
|
4749
|
+
"anticipation",
|
|
4750
|
+
"outraged",
|
|
4751
|
+
"threatened",
|
|
4752
|
+
"contempt",
|
|
4753
|
+
"envious",
|
|
4754
|
+
"dejected",
|
|
4755
|
+
"rejected",
|
|
4756
|
+
"wistful",
|
|
4757
|
+
"insecure",
|
|
4758
|
+
"resigned",
|
|
4759
|
+
"distant"
|
|
4746
4760
|
];
|
|
4747
4761
|
var VALID = new Set(EMOTIONS);
|
|
4748
4762
|
var ALIASES = {
|
|
@@ -4787,7 +4801,9 @@ var ALIASES = {
|
|
|
4787
4801
|
peaceful: "calm",
|
|
4788
4802
|
serene: "calm",
|
|
4789
4803
|
relaxed: "calm",
|
|
4790
|
-
sleepy: "tired"
|
|
4804
|
+
sleepy: "tired",
|
|
4805
|
+
comedic: "joking"
|
|
4806
|
+
// Cartesia lists "joking/comedic" as one — canonicalize to joking
|
|
4791
4807
|
};
|
|
4792
4808
|
var NONVERBAL = { laughter: "laughter", laughs: "laughter", laugh: "laughter", laughing: "laughter" };
|
|
4793
4809
|
function normalizeEmotion(raw) {
|