@iinm/plain-agent 1.7.5 → 1.7.6

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
@@ -14,7 +14,7 @@ A lightweight CLI-based coding agent.
14
14
 
15
15
  ## Safety Controls
16
16
 
17
- **Auto-Approval**: Tools with no side effects and no sensitive data access are automatically approved based on patterns defined in [`config.predefined.json#autoApproval`](https://github.com/iinm/plain-agent/blob/main/.config/config.predefined.json).
17
+ **Auto-Approval**: Tools with no side effects and no sensitive data access are automatically approved based on patterns defined in [`config.predefined.json#autoApproval`](https://github.com/iinm/plain-agent/blob/main/config/config.predefined.json).
18
18
 
19
19
  **Path Validation**: All file paths in tool inputs are validated to remain within the working directory and under git control.
20
20
 
@@ -146,11 +146,6 @@ Create the configuration.
146
146
  "baseURL": "https://router.huggingface.co",
147
147
  "apiKey": "FIXME"
148
148
  },
149
- {
150
- "name": "openai-compatible",
151
- "variant": "xai",
152
- "apiKey": "FIXME"
153
- },
154
149
  {
155
150
  "name": "openai-compatible",
156
151
  "variant": "fireworks",
@@ -1038,6 +1038,29 @@
1038
1038
  }
1039
1039
  }
1040
1040
  },
1041
+ {
1042
+ "name": "kimi-k2.5",
1043
+ "variant": "fireworks",
1044
+ "platform": {
1045
+ "name": "openai-compatible",
1046
+ "variant": "fireworks"
1047
+ },
1048
+ "model": {
1049
+ "format": "openai-messages",
1050
+ "config": {
1051
+ "model": "accounts/fireworks/models/kimi-k2p5"
1052
+ }
1053
+ },
1054
+ "cost": {
1055
+ "currency": "USD",
1056
+ "unit": "1M",
1057
+ "costs": {
1058
+ "prompt_tokens": 0.6,
1059
+ "prompt_tokens_details.cached_tokens": -0.5,
1060
+ "completion_tokens": 3
1061
+ }
1062
+ }
1063
+ },
1041
1064
 
1042
1065
  {
1043
1066
  "name": "deepseek-v3.2",
@@ -1069,7 +1092,29 @@
1069
1092
  }
1070
1093
  }
1071
1094
  },
1072
-
1095
+ {
1096
+ "name": "deepseek-v3.2",
1097
+ "variant": "fireworks",
1098
+ "platform": {
1099
+ "name": "openai-compatible",
1100
+ "variant": "fireworks"
1101
+ },
1102
+ "model": {
1103
+ "format": "openai-messages",
1104
+ "config": {
1105
+ "model": "accounts/fireworks/models/deepseek-v3p2"
1106
+ }
1107
+ },
1108
+ "cost": {
1109
+ "currency": "USD",
1110
+ "unit": "1M",
1111
+ "costs": {
1112
+ "prompt_tokens": 0.56,
1113
+ "prompt_tokens_details.cached_tokens": -0.28,
1114
+ "completion_tokens": 1.68
1115
+ }
1116
+ }
1117
+ },
1073
1118
  {
1074
1119
  "name": "minimax-m2.1",
1075
1120
  "variant": "bedrock",
@@ -1085,6 +1130,30 @@
1085
1130
  }
1086
1131
  }
1087
1132
  },
1133
+ {
1134
+ "name": "minimax-m2.5",
1135
+ "variant": "fireworks",
1136
+ "platform": {
1137
+ "name": "openai-compatible",
1138
+ "variant": "fireworks"
1139
+ },
1140
+ "model": {
1141
+ "format": "openai-messages",
1142
+ "config": {
1143
+ "model": "accounts/fireworks/models/minimax-m2p5"
1144
+ }
1145
+ },
1146
+ "cost": {
1147
+ "currency": "USD",
1148
+ "unit": "1M",
1149
+ "costs": {
1150
+ "prompt_tokens": 0.3,
1151
+ "prompt_tokens_details.cached_tokens": -0.27,
1152
+ "completion_tokens": 1.2
1153
+ }
1154
+ }
1155
+ },
1156
+
1088
1157
  {
1089
1158
  "name": "minimax-m2.7",
1090
1159
  "variant": "ollama",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iinm/plain-agent",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "A lightweight CLI-based coding agent",
5
5
  "license": "MIT",
6
6
  "type": "module",