nolo-cli 0.1.9 → 0.1.10
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/ai/ai.locale.ts +4 -0
- package/package.json +15 -1
package/ai/ai.locale.ts
CHANGED
|
@@ -27,6 +27,7 @@ export default {
|
|
|
27
27
|
textOnly: "Text-only",
|
|
28
28
|
details: "Details",
|
|
29
29
|
price: "Price",
|
|
30
|
+
referencePricePerTurn: "Per-turn reference price",
|
|
30
31
|
perMillionTokens: "per 1M tokens",
|
|
31
32
|
perTurn: "turn (est.)",
|
|
32
33
|
perImage: "image",
|
|
@@ -316,6 +317,7 @@ export default {
|
|
|
316
317
|
textOnly: "纯文本",
|
|
317
318
|
details: "详细信息",
|
|
318
319
|
price: "价格",
|
|
320
|
+
referencePricePerTurn: "按次参考价",
|
|
319
321
|
perMillionTokens: "每百万Token",
|
|
320
322
|
perTurn: "次(估算)",
|
|
321
323
|
perImage: "张",
|
|
@@ -602,6 +604,7 @@ export default {
|
|
|
602
604
|
textOnly: "純文字",
|
|
603
605
|
details: "詳細資訊",
|
|
604
606
|
price: "價格",
|
|
607
|
+
referencePricePerTurn: "按次參考價",
|
|
605
608
|
perMillionTokens: "每百萬Token",
|
|
606
609
|
perTurn: "次(估算)",
|
|
607
610
|
perImage: "張",
|
|
@@ -846,6 +849,7 @@ export default {
|
|
|
846
849
|
textOnly: "テキストのみ",
|
|
847
850
|
details: "詳細",
|
|
848
851
|
price: "価格",
|
|
852
|
+
referencePricePerTurn: "回ごとの参考価格",
|
|
849
853
|
perMillionTokens: "100万トークンあたり",
|
|
850
854
|
perTurn: "回(概算)",
|
|
851
855
|
perImage: "枚",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nolo-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent-first terminal workspace for Nolo",
|
|
6
6
|
"bin": {
|
|
@@ -36,5 +36,19 @@
|
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"typescript": "^5.0.0"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@reduxjs/toolkit": "^2.5.0",
|
|
42
|
+
"iztro": "^2.5.8",
|
|
43
|
+
"ulid": "^2.3.0",
|
|
44
|
+
"pino": "^9.9.0",
|
|
45
|
+
"react": "^19.2.1",
|
|
46
|
+
"i18next": "^23.11.5",
|
|
47
|
+
"zod": "^3.25.20",
|
|
48
|
+
"react-hook-form": "^7.51.5",
|
|
49
|
+
"@hookform/resolvers": "^3.3.2",
|
|
50
|
+
"react-i18next": "^14.1.2",
|
|
51
|
+
"react-hot-toast": "^2.4.1",
|
|
52
|
+
"react-native-sse": "^1.2.1"
|
|
39
53
|
}
|
|
40
54
|
}
|