@iinm/plain-agent 1.7.16 → 1.7.18
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 +116 -47
- package/config/config.predefined.json +8 -170
- package/package.json +1 -1
- package/src/cliInteractive.mjs +116 -2
- package/src/cliInterruptTransform.mjs +22 -5
- package/src/cliMuteTransform.mjs +26 -0
- package/src/config.d.ts +2 -0
- package/src/config.mjs +3 -0
- package/src/main.mjs +1 -0
- package/src/voiceInput.mjs +671 -0
package/README.md
CHANGED
|
@@ -60,19 +60,19 @@ Create the configuration.
|
|
|
60
60
|
{
|
|
61
61
|
"name": "anthropic",
|
|
62
62
|
"variant": "default",
|
|
63
|
-
"apiKey": "
|
|
63
|
+
"apiKey": "<ANTHROPIC_API_KEY>"
|
|
64
64
|
// Or
|
|
65
65
|
// "apiKey": { "$env": "ANTHROPIC_API_KEY" }
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"name": "gemini",
|
|
69
69
|
"variant": "default",
|
|
70
|
-
"apiKey": "
|
|
70
|
+
"apiKey": "<GEMINI_API_KEY>"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"name": "openai",
|
|
74
74
|
"variant": "default",
|
|
75
|
-
"apiKey": "
|
|
75
|
+
"apiKey": "<OPENAI_API_KEY>"
|
|
76
76
|
},
|
|
77
77
|
],
|
|
78
78
|
|
|
@@ -81,7 +81,7 @@ Create the configuration.
|
|
|
81
81
|
// askWeb: Searches the web to answer questions requiring up-to-date information or external sources.
|
|
82
82
|
"askWeb": {
|
|
83
83
|
"provider": "gemini",
|
|
84
|
-
"apiKey": "
|
|
84
|
+
"apiKey": "<GEMINI_API_KEY>",
|
|
85
85
|
"model": "gemini-3-flash-preview"
|
|
86
86
|
// Optional
|
|
87
87
|
// "baseURL": "<proxy_url>"
|
|
@@ -98,7 +98,7 @@ Create the configuration.
|
|
|
98
98
|
// Directly injecting URL content into context is not supported to prevent prompt injection.
|
|
99
99
|
"askURL": {
|
|
100
100
|
"provider": "gemini",
|
|
101
|
-
"apiKey": "
|
|
101
|
+
"apiKey": "<GEMINI_API_KEY>"
|
|
102
102
|
"model": "gemini-3-flash-preview"
|
|
103
103
|
// Optional
|
|
104
104
|
// "baseURL": "<proxy_url>"
|
|
@@ -134,7 +134,7 @@ Create the configuration.
|
|
|
134
134
|
"name": "bedrock",
|
|
135
135
|
"variant": "default",
|
|
136
136
|
"baseURL": "https://bedrock-runtime.<region>.amazonaws.com",
|
|
137
|
-
"awsProfile": "
|
|
137
|
+
"awsProfile": "<AWS_PROFILE>"
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
// Requires gcloud CLI to get authentication token
|
|
@@ -157,24 +157,42 @@ Create the configuration.
|
|
|
157
157
|
"platforms": [
|
|
158
158
|
{
|
|
159
159
|
"name": "openai-compatible",
|
|
160
|
-
"variant": "
|
|
161
|
-
"baseURL": "https://
|
|
162
|
-
"apiKey": "
|
|
163
|
-
}
|
|
160
|
+
"variant": "fireworks",
|
|
161
|
+
"baseURL": "https://api.fireworks.ai/inference",
|
|
162
|
+
"apiKey": "<FIREWORKS_API_KEY>"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
```js
|
|
169
|
+
{
|
|
170
|
+
"platforms": [
|
|
164
171
|
{
|
|
165
172
|
"name": "openai-compatible",
|
|
166
|
-
"variant": "
|
|
167
|
-
"baseURL": "https://
|
|
168
|
-
"apiKey": "
|
|
169
|
-
}
|
|
173
|
+
"variant": "ollama",
|
|
174
|
+
"baseURL": "https://ollama.com",
|
|
175
|
+
"apiKey": "<API_KEY>"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"models": [
|
|
170
179
|
{
|
|
171
|
-
"name": "
|
|
172
|
-
"variant": "
|
|
173
|
-
"
|
|
174
|
-
|
|
180
|
+
"name": "gpt-oss",
|
|
181
|
+
"variant": "ollama",
|
|
182
|
+
"platform": {
|
|
183
|
+
"name": "openai-compatible",
|
|
184
|
+
"variant": "ollama"
|
|
185
|
+
},
|
|
186
|
+
"model": {
|
|
187
|
+
"format": "openai-responses",
|
|
188
|
+
"config": {
|
|
189
|
+
"model": "gpt-oss:120b-cloud"
|
|
190
|
+
}
|
|
191
|
+
}
|
|
175
192
|
}
|
|
176
193
|
]
|
|
177
194
|
}
|
|
195
|
+
|
|
178
196
|
```
|
|
179
197
|
</details>
|
|
180
198
|
|
|
@@ -183,6 +201,14 @@ Create the configuration.
|
|
|
183
201
|
|
|
184
202
|
```js
|
|
185
203
|
{
|
|
204
|
+
"platforms": [
|
|
205
|
+
{
|
|
206
|
+
"name": "bedrock",
|
|
207
|
+
"variant": "jp",
|
|
208
|
+
"baseURL": "https://bedrock-runtime.ap-northeast-1.amazonaws.com",
|
|
209
|
+
"awsProfile": "<AWS_PROFILE>"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
186
212
|
"models": [
|
|
187
213
|
{
|
|
188
214
|
"name": "claude-haiku-4-5",
|
|
@@ -237,14 +263,6 @@ Create the configuration.
|
|
|
237
263
|
}
|
|
238
264
|
}
|
|
239
265
|
}
|
|
240
|
-
],
|
|
241
|
-
"platforms": [
|
|
242
|
-
{
|
|
243
|
-
"name": "bedrock",
|
|
244
|
-
"variant": "jp",
|
|
245
|
-
"baseURL": "https://bedrock-runtime.ap-northeast-1.amazonaws.com",
|
|
246
|
-
"awsProfile": "FIXME"
|
|
247
|
-
}
|
|
248
266
|
]
|
|
249
267
|
}
|
|
250
268
|
```
|
|
@@ -307,7 +325,7 @@ The agent can use the following tools to assist with tasks:
|
|
|
307
325
|
- **report_as_subagent**: Report completion and return to the main agent. Used by subagents to communicate results and restore the main agent role. After reporting, the subagent's conversation history is removed from the context.
|
|
308
326
|
- **compact_context**: Compact the conversation context by discarding prior messages and reloading task state from a memory file. Use when the context has grown large but the task is not yet complete. Can also be invoked via the `/compact` slash command.
|
|
309
327
|
|
|
310
|
-
##
|
|
328
|
+
## Configuration
|
|
311
329
|
|
|
312
330
|
```
|
|
313
331
|
~/.config/plain-agent/
|
|
@@ -325,14 +343,12 @@ The agent can use the following tools to assist with tasks:
|
|
|
325
343
|
\__ agents/ # Project-specific agent roles
|
|
326
344
|
```
|
|
327
345
|
|
|
328
|
-
## Configuration
|
|
329
|
-
|
|
330
346
|
The agent loads configuration files in the following order. Settings in later files will override those in earlier files.
|
|
331
347
|
|
|
332
|
-
- `~/.config/plain-agent/config.json
|
|
333
|
-
- `~/.config/plain-agent/config.local.json
|
|
334
|
-
- `.plain-agent/config.json
|
|
335
|
-
- `.plain-agent/config.local.json
|
|
348
|
+
- `~/.config/plain-agent/config.json`
|
|
349
|
+
- `~/.config/plain-agent/config.local.json`
|
|
350
|
+
- `.plain-agent/config.json`
|
|
351
|
+
- `.plain-agent/config.local.json`
|
|
336
352
|
|
|
337
353
|
### Example
|
|
338
354
|
|
|
@@ -463,7 +479,7 @@ The agent loads configuration files in the following order. Settings in later fi
|
|
|
463
479
|
// ⚠️ Add this to config.local.json to avoid committing secrets to Git
|
|
464
480
|
"slack": {
|
|
465
481
|
"command": "npx",
|
|
466
|
-
"args": ["-y", "mcp-remote", "https://mcp.slack.com/mcp", "--header", "Authorization:Bearer
|
|
482
|
+
"args": ["-y", "mcp-remote", "https://mcp.slack.com/mcp", "--header", "Authorization:Bearer <SLACK_TOKEN>"],
|
|
467
483
|
},
|
|
468
484
|
"notion": {
|
|
469
485
|
"command": "npx",
|
|
@@ -480,12 +496,18 @@ The agent loads configuration files in the following order. Settings in later fi
|
|
|
480
496
|
// ⚠️ Add this to config.local.json to avoid committing secrets to Git
|
|
481
497
|
"google_developer-knowledge": {
|
|
482
498
|
"command": "npx",
|
|
483
|
-
"args": ["-y", "mcp-remote", "https://developerknowledge.googleapis.com/mcp", "--header", "X-Goog-Api-Key
|
|
499
|
+
"args": ["-y", "mcp-remote", "https://developerknowledge.googleapis.com/mcp", "--header", "X-Goog-Api-Key:<GOOGLE_API_KEY>"]
|
|
484
500
|
}
|
|
485
501
|
},
|
|
486
502
|
|
|
487
503
|
// Override default notification command
|
|
488
504
|
// "notifyCmd": "/path/to/notification-command"
|
|
505
|
+
|
|
506
|
+
// (Optional) Voice input. See "Voice Input" below.
|
|
507
|
+
// "voiceInput": {
|
|
508
|
+
// "provider": "openai",
|
|
509
|
+
// "apiKey": "<OPENAI_API_KEY>"
|
|
510
|
+
// }
|
|
489
511
|
}
|
|
490
512
|
```
|
|
491
513
|
</details>
|
|
@@ -606,6 +628,53 @@ Example:
|
|
|
606
628
|
plain install-claude-code-plugins
|
|
607
629
|
```
|
|
608
630
|
|
|
631
|
+
## Voice Input
|
|
632
|
+
|
|
633
|
+
Press **Ctrl-O** to start recording, press it again to stop. Partial
|
|
634
|
+
transcripts are inserted into the prompt as you speak so you can edit
|
|
635
|
+
and send them like regular text.
|
|
636
|
+
|
|
637
|
+
### Requirements
|
|
638
|
+
|
|
639
|
+
- A recording command on `PATH`: `arecord`, `sox`, or `ffmpeg`.
|
|
640
|
+
- An API key for the chosen provider.
|
|
641
|
+
- Your host must have microphone access. The sandbox does not need to.
|
|
642
|
+
|
|
643
|
+
### Providers
|
|
644
|
+
|
|
645
|
+
**OpenAI Realtime** (default, recommended):
|
|
646
|
+
|
|
647
|
+
```js
|
|
648
|
+
{
|
|
649
|
+
"voiceInput": {
|
|
650
|
+
"provider": "openai",
|
|
651
|
+
"apiKey": "<OPENAI_API_KEY>"
|
|
652
|
+
// "model": "gpt-4o-transcribe", // or "gpt-4o-mini-transcribe", "whisper-1"
|
|
653
|
+
// "language": "ja" // ISO-639-1 code. Improves accuracy and latency.
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
```
|
|
657
|
+
|
|
658
|
+
**Gemini Live** (preview API; model names and pricing may change):
|
|
659
|
+
|
|
660
|
+
```js
|
|
661
|
+
{
|
|
662
|
+
"voiceInput": {
|
|
663
|
+
"provider": "gemini",
|
|
664
|
+
"apiKey": "<GEMINI_API_KEY>"
|
|
665
|
+
// "model": "gemini-3.1-flash-live-preview",
|
|
666
|
+
// "language": "ja"
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
```
|
|
670
|
+
|
|
671
|
+
### Options
|
|
672
|
+
|
|
673
|
+
- `toggleKey` — Rebind the toggle. Accepts `"ctrl-<char>"` where `<char>`
|
|
674
|
+
is a letter (a-z) or one of `[ \ ] ^ _`. Defaults to `"ctrl-o"`.
|
|
675
|
+
- `recorder` — Override recorder auto-detection. Must write raw 16-bit
|
|
676
|
+
little-endian mono PCM to stdout at 24 kHz (OpenAI) or 16 kHz (Gemini).
|
|
677
|
+
|
|
609
678
|
## Development
|
|
610
679
|
|
|
611
680
|
```sh
|
|
@@ -644,9 +713,9 @@ npm publish --access public
|
|
|
644
713
|
|
|
645
714
|
```sh
|
|
646
715
|
# IAM Identity Center
|
|
647
|
-
identity_center_instance_arn="
|
|
648
|
-
identity_store_id
|
|
649
|
-
aws_account_id
|
|
716
|
+
identity_center_instance_arn="<IDENTITY_CENTER_INSTANCE_ARN>" # e.g., arn:aws:sso:::instance/ssoins-xxxxxxxxxxxxxxxx"
|
|
717
|
+
identity_store_id=<IDENTITY_STORE_ID>
|
|
718
|
+
aws_account_id=<AWS_ACCOUNT_ID>
|
|
650
719
|
|
|
651
720
|
# Create a permission set
|
|
652
721
|
permission_set_arn=$(aws sso-admin create-permission-set \
|
|
@@ -681,10 +750,10 @@ aws sso-admin put-inline-policy-to-permission-set \
|
|
|
681
750
|
--inline-policy "$policy"
|
|
682
751
|
|
|
683
752
|
# Create an SSO user
|
|
684
|
-
sso_user_name
|
|
685
|
-
sso_user_email
|
|
686
|
-
sso_user_family_name
|
|
687
|
-
sso_user_given_name
|
|
753
|
+
sso_user_name=<SSO_USER_NAME>
|
|
754
|
+
sso_user_email=<SSO_USER_EMAIL>
|
|
755
|
+
sso_user_family_name=<SSO_USER_FAMILY_NAME>
|
|
756
|
+
sso_user_given_name=<SSO_USER_GIVEN_NAME>
|
|
688
757
|
|
|
689
758
|
user_id=$(aws identitystore create-user \
|
|
690
759
|
--identity-store-id "$identity_store_id" \
|
|
@@ -725,8 +794,8 @@ aws bedrock-runtime invoke-model \
|
|
|
725
794
|
<summary><b>Azure - Microsoft Foundry</b></summary>
|
|
726
795
|
|
|
727
796
|
```sh
|
|
728
|
-
resource_group
|
|
729
|
-
account_name
|
|
797
|
+
resource_group=<RESOURCE_GROUP>
|
|
798
|
+
account_name=<ACCOUNT_NAME> # resource name
|
|
730
799
|
|
|
731
800
|
# Create a service principal
|
|
732
801
|
service_principal=$(az ad sp create-for-rbac --name "CodingAgentServicePrincipal" --skip-assignment)
|
|
@@ -758,10 +827,10 @@ az login --service-principal -u "$app_id" -p "$app_secret" --tenant "$tenant_id"
|
|
|
758
827
|
<summary><b>Google Cloud Vertex AI</b></summary>
|
|
759
828
|
|
|
760
829
|
```sh
|
|
761
|
-
project_id
|
|
762
|
-
service_account_name
|
|
830
|
+
project_id=<PROJECT_ID>
|
|
831
|
+
service_account_name=<SERVICE_ACCOUNT_NAME>
|
|
763
832
|
service_account_email="${service_account_name}@${project_id}.iam.gserviceaccount.com"
|
|
764
|
-
your_account_email
|
|
833
|
+
your_account_email=<YOUR_ACCOUNT_EMAIL>
|
|
765
834
|
|
|
766
835
|
# Create a service account
|
|
767
836
|
gcloud iam service-accounts create "$service_account_name" \
|
|
@@ -910,37 +910,6 @@
|
|
|
910
910
|
}
|
|
911
911
|
},
|
|
912
912
|
|
|
913
|
-
{
|
|
914
|
-
"name": "grok-4-1-fast-reasoning",
|
|
915
|
-
"variant": "default",
|
|
916
|
-
"platform": {
|
|
917
|
-
"name": "openai",
|
|
918
|
-
"variant": "xai",
|
|
919
|
-
"baseURL": "https://api.x.ai"
|
|
920
|
-
},
|
|
921
|
-
"model": {
|
|
922
|
-
"format": "openai-messages",
|
|
923
|
-
"config": {
|
|
924
|
-
"model": "grok-4-1-fast-reasoning"
|
|
925
|
-
}
|
|
926
|
-
}
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
"name": "grok-4.20-0309-reasoning",
|
|
930
|
-
"variant": "default",
|
|
931
|
-
"platform": {
|
|
932
|
-
"name": "openai",
|
|
933
|
-
"variant": "xai",
|
|
934
|
-
"baseURL": "https://api.x.ai"
|
|
935
|
-
},
|
|
936
|
-
"model": {
|
|
937
|
-
"format": "openai-messages",
|
|
938
|
-
"config": {
|
|
939
|
-
"model": "grok-4.20-0309-reasoning"
|
|
940
|
-
}
|
|
941
|
-
}
|
|
942
|
-
},
|
|
943
|
-
|
|
944
913
|
{
|
|
945
914
|
"name": "glm-5",
|
|
946
915
|
"variant": "vertex-ai",
|
|
@@ -964,21 +933,6 @@
|
|
|
964
933
|
}
|
|
965
934
|
}
|
|
966
935
|
},
|
|
967
|
-
{
|
|
968
|
-
"name": "glm-5",
|
|
969
|
-
"variant": "bedrock",
|
|
970
|
-
"platform": {
|
|
971
|
-
"name": "bedrock",
|
|
972
|
-
"variant": "default"
|
|
973
|
-
},
|
|
974
|
-
"model": {
|
|
975
|
-
"format": "openai-messages",
|
|
976
|
-
"config": {
|
|
977
|
-
"model": "zai.glm-5",
|
|
978
|
-
"reasoning_effort": "high"
|
|
979
|
-
}
|
|
980
|
-
}
|
|
981
|
-
},
|
|
982
936
|
{
|
|
983
937
|
"name": "glm-5.1",
|
|
984
938
|
"variant": "fireworks",
|
|
@@ -1002,52 +956,9 @@
|
|
|
1002
956
|
}
|
|
1003
957
|
}
|
|
1004
958
|
},
|
|
1005
|
-
{
|
|
1006
|
-
"name": "glm-5.1",
|
|
1007
|
-
"variant": "ollama",
|
|
1008
|
-
"platform": {
|
|
1009
|
-
"name": "openai-compatible",
|
|
1010
|
-
"variant": "ollama"
|
|
1011
|
-
},
|
|
1012
|
-
"model": {
|
|
1013
|
-
"format": "openai-responses",
|
|
1014
|
-
"config": {
|
|
1015
|
-
"model": "glm-5:cloud"
|
|
1016
|
-
}
|
|
1017
|
-
}
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"name": "glm-5.1",
|
|
1021
|
-
"variant": "huggingface",
|
|
1022
|
-
"platform": {
|
|
1023
|
-
"name": "openai-compatible",
|
|
1024
|
-
"variant": "huggingface"
|
|
1025
|
-
},
|
|
1026
|
-
"model": {
|
|
1027
|
-
"format": "openai-messages",
|
|
1028
|
-
"config": {
|
|
1029
|
-
"model": "zai-org/GLM-5.1:together"
|
|
1030
|
-
}
|
|
1031
|
-
}
|
|
1032
|
-
},
|
|
1033
959
|
|
|
1034
960
|
{
|
|
1035
|
-
"name": "kimi-k2.
|
|
1036
|
-
"variant": "bedrock",
|
|
1037
|
-
"platform": {
|
|
1038
|
-
"name": "bedrock",
|
|
1039
|
-
"variant": "default"
|
|
1040
|
-
},
|
|
1041
|
-
"model": {
|
|
1042
|
-
"format": "openai-messages",
|
|
1043
|
-
"config": {
|
|
1044
|
-
"model": "moonshotai.kimi-k2.5",
|
|
1045
|
-
"reasoning_effort": "high"
|
|
1046
|
-
}
|
|
1047
|
-
}
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
"name": "kimi-k2.5",
|
|
961
|
+
"name": "kimi-k2.6",
|
|
1051
962
|
"variant": "fireworks",
|
|
1052
963
|
"platform": {
|
|
1053
964
|
"name": "openai-compatible",
|
|
@@ -1056,16 +967,16 @@
|
|
|
1056
967
|
"model": {
|
|
1057
968
|
"format": "openai-messages",
|
|
1058
969
|
"config": {
|
|
1059
|
-
"model": "accounts/fireworks/models/kimi-
|
|
970
|
+
"model": "accounts/fireworks/models/kimi-k2p6"
|
|
1060
971
|
}
|
|
1061
972
|
},
|
|
1062
973
|
"cost": {
|
|
1063
974
|
"currency": "USD",
|
|
1064
975
|
"unit": "1M",
|
|
1065
976
|
"costs": {
|
|
1066
|
-
"prompt_tokens": 0.
|
|
1067
|
-
"prompt_tokens_details.cached_tokens": -0.
|
|
1068
|
-
"completion_tokens":
|
|
977
|
+
"prompt_tokens": 0.95,
|
|
978
|
+
"prompt_tokens_details.cached_tokens": -0.79,
|
|
979
|
+
"completion_tokens": 4
|
|
1069
980
|
}
|
|
1070
981
|
}
|
|
1071
982
|
},
|
|
@@ -1085,21 +996,6 @@
|
|
|
1085
996
|
}
|
|
1086
997
|
}
|
|
1087
998
|
},
|
|
1088
|
-
{
|
|
1089
|
-
"name": "deepseek-v3.2",
|
|
1090
|
-
"variant": "bedrock",
|
|
1091
|
-
"platform": {
|
|
1092
|
-
"name": "bedrock",
|
|
1093
|
-
"variant": "default"
|
|
1094
|
-
},
|
|
1095
|
-
"model": {
|
|
1096
|
-
"format": "openai-messages",
|
|
1097
|
-
"config": {
|
|
1098
|
-
"model": "deepseek.v3.2",
|
|
1099
|
-
"reasoning_effort": "high"
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
},
|
|
1103
999
|
{
|
|
1104
1000
|
"name": "deepseek-v3.2",
|
|
1105
1001
|
"variant": "fireworks",
|
|
@@ -1123,23 +1019,9 @@
|
|
|
1123
1019
|
}
|
|
1124
1020
|
}
|
|
1125
1021
|
},
|
|
1022
|
+
|
|
1126
1023
|
{
|
|
1127
|
-
"name": "minimax-m2.
|
|
1128
|
-
"variant": "bedrock",
|
|
1129
|
-
"platform": {
|
|
1130
|
-
"name": "bedrock",
|
|
1131
|
-
"variant": "default"
|
|
1132
|
-
},
|
|
1133
|
-
"model": {
|
|
1134
|
-
"format": "openai-messages",
|
|
1135
|
-
"config": {
|
|
1136
|
-
"model": "minimax.minimax-m2.1",
|
|
1137
|
-
"reasoning_effort": "high"
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"name": "minimax-m2.5",
|
|
1024
|
+
"name": "minimax-m2.7",
|
|
1143
1025
|
"variant": "fireworks",
|
|
1144
1026
|
"platform": {
|
|
1145
1027
|
"name": "openai-compatible",
|
|
@@ -1148,7 +1030,7 @@
|
|
|
1148
1030
|
"model": {
|
|
1149
1031
|
"format": "openai-messages",
|
|
1150
1032
|
"config": {
|
|
1151
|
-
"model": "accounts/fireworks/models/minimax-
|
|
1033
|
+
"model": "accounts/fireworks/models/minimax-m2p7"
|
|
1152
1034
|
}
|
|
1153
1035
|
},
|
|
1154
1036
|
"cost": {
|
|
@@ -1162,21 +1044,6 @@
|
|
|
1162
1044
|
}
|
|
1163
1045
|
},
|
|
1164
1046
|
|
|
1165
|
-
{
|
|
1166
|
-
"name": "minimax-m2.7",
|
|
1167
|
-
"variant": "ollama",
|
|
1168
|
-
"platform": {
|
|
1169
|
-
"name": "openai-compatible",
|
|
1170
|
-
"variant": "ollama"
|
|
1171
|
-
},
|
|
1172
|
-
"model": {
|
|
1173
|
-
"format": "openai-responses",
|
|
1174
|
-
"config": {
|
|
1175
|
-
"model": "minimax-m2.7:cloud"
|
|
1176
|
-
}
|
|
1177
|
-
}
|
|
1178
|
-
},
|
|
1179
|
-
|
|
1180
1047
|
{
|
|
1181
1048
|
"name": "qwen3-next",
|
|
1182
1049
|
"variant": "vertex-ai",
|
|
@@ -1215,35 +1082,6 @@
|
|
|
1215
1082
|
}
|
|
1216
1083
|
},
|
|
1217
1084
|
|
|
1218
|
-
{
|
|
1219
|
-
"name": "gemma4",
|
|
1220
|
-
"variant": "ollama",
|
|
1221
|
-
"platform": {
|
|
1222
|
-
"name": "openai-compatible",
|
|
1223
|
-
"variant": "ollama"
|
|
1224
|
-
},
|
|
1225
|
-
"model": {
|
|
1226
|
-
"format": "openai-responses",
|
|
1227
|
-
"config": {
|
|
1228
|
-
"model": "gemma4:31b-cloud"
|
|
1229
|
-
}
|
|
1230
|
-
}
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"name": "gemma4",
|
|
1234
|
-
"variant": "huggingface",
|
|
1235
|
-
"platform": {
|
|
1236
|
-
"name": "openai-compatible",
|
|
1237
|
-
"variant": "huggingface"
|
|
1238
|
-
},
|
|
1239
|
-
"model": {
|
|
1240
|
-
"format": "openai-messages",
|
|
1241
|
-
"config": {
|
|
1242
|
-
"model": "google/gemma-4-31B-it:together"
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
},
|
|
1246
|
-
|
|
1247
1085
|
{
|
|
1248
1086
|
"name": "nova-2-lite",
|
|
1249
1087
|
"variant": "bedrock",
|