@raycast/api 1.103.6 → 1.103.8
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/api/github.js +11 -10
- package/dist/commands/publish/index.js +208 -206
- package/dist/commands/pull-contributions/index.js +20 -18
- package/dist/commands/version/index.js +1 -1
- package/dist/utils/publish/git.js +5 -3
- package/dist/utils/publish/publish-to-public-repo.js +26 -24
- package/dist/utils/publish/publish-to-store.js +205 -204
- package/dist/utils/publish/pull-contributions.js +20 -18
- package/dist/utils/publish/setup-github-fork.js +20 -18
- package/oclif.manifest.json +124 -118
- package/package.json +1 -1
- package/types/index.d.ts +146 -83
package/oclif.manifest.json
CHANGED
|
@@ -108,12 +108,10 @@
|
|
|
108
108
|
"index.js"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
|
-
"
|
|
112
|
-
"aliases": [
|
|
113
|
-
"dev"
|
|
114
|
-
],
|
|
111
|
+
"lint": {
|
|
112
|
+
"aliases": [],
|
|
115
113
|
"args": {},
|
|
116
|
-
"description": "
|
|
114
|
+
"description": "Validate the extension manifest and metadata, and lint its source code",
|
|
117
115
|
"flags": {
|
|
118
116
|
"exit-on-error": {
|
|
119
117
|
"aliases": [
|
|
@@ -166,31 +164,34 @@
|
|
|
166
164
|
],
|
|
167
165
|
"type": "option"
|
|
168
166
|
},
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"name": "
|
|
167
|
+
"fix": {
|
|
168
|
+
"char": "f",
|
|
169
|
+
"description": "Attempt to fix linting issues",
|
|
170
|
+
"name": "fix",
|
|
173
171
|
"allowNo": false,
|
|
174
172
|
"type": "boolean"
|
|
175
173
|
},
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"name": "
|
|
174
|
+
"relaxed": {
|
|
175
|
+
"char": "r",
|
|
176
|
+
"description": "Use relaxed linting mode to skip validation of: package.json schema, icons and metadata.",
|
|
177
|
+
"name": "relaxed",
|
|
180
178
|
"allowNo": false,
|
|
181
179
|
"type": "boolean"
|
|
182
180
|
},
|
|
183
|
-
"
|
|
184
|
-
"
|
|
181
|
+
"schema": {
|
|
182
|
+
"char": "s",
|
|
183
|
+
"description": "Path to JSON schema for package.json validation \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
185
184
|
"hidden": true,
|
|
186
|
-
"name": "
|
|
187
|
-
"
|
|
188
|
-
"
|
|
185
|
+
"name": "schema",
|
|
186
|
+
"default": "https://www.raycast.com/schemas/extension.json",
|
|
187
|
+
"hasDynamicHelp": false,
|
|
188
|
+
"multiple": false,
|
|
189
|
+
"type": "option"
|
|
189
190
|
}
|
|
190
191
|
},
|
|
191
192
|
"hasDynamicHelp": false,
|
|
192
193
|
"hiddenAliases": [],
|
|
193
|
-
"id": "
|
|
194
|
+
"id": "lint",
|
|
194
195
|
"pluginAlias": "ray",
|
|
195
196
|
"pluginName": "ray",
|
|
196
197
|
"pluginType": "core",
|
|
@@ -200,7 +201,7 @@
|
|
|
200
201
|
"relativePath": [
|
|
201
202
|
"dist",
|
|
202
203
|
"commands",
|
|
203
|
-
"
|
|
204
|
+
"lint",
|
|
204
205
|
"index.js"
|
|
205
206
|
]
|
|
206
207
|
},
|
|
@@ -312,103 +313,6 @@
|
|
|
312
313
|
"index.js"
|
|
313
314
|
]
|
|
314
315
|
},
|
|
315
|
-
"lint": {
|
|
316
|
-
"aliases": [],
|
|
317
|
-
"args": {},
|
|
318
|
-
"description": "Validate the extension manifest and metadata, and lint its source code",
|
|
319
|
-
"flags": {
|
|
320
|
-
"exit-on-error": {
|
|
321
|
-
"aliases": [
|
|
322
|
-
"exitOnError"
|
|
323
|
-
],
|
|
324
|
-
"deprecateAliases": true,
|
|
325
|
-
"helpGroup": "GLOBAL",
|
|
326
|
-
"name": "exit-on-error",
|
|
327
|
-
"summary": "Always exit with non-zero code on error",
|
|
328
|
-
"allowNo": true,
|
|
329
|
-
"type": "boolean"
|
|
330
|
-
},
|
|
331
|
-
"emoji": {
|
|
332
|
-
"helpGroup": "GLOBAL",
|
|
333
|
-
"name": "emoji",
|
|
334
|
-
"summary": "Prefix output with emojis 🌈",
|
|
335
|
-
"allowNo": false,
|
|
336
|
-
"type": "boolean"
|
|
337
|
-
},
|
|
338
|
-
"help": {
|
|
339
|
-
"helpGroup": "GLOBAL",
|
|
340
|
-
"name": "help",
|
|
341
|
-
"summary": "Show the help message for the command",
|
|
342
|
-
"allowNo": false,
|
|
343
|
-
"type": "boolean"
|
|
344
|
-
},
|
|
345
|
-
"non-interactive": {
|
|
346
|
-
"char": "I",
|
|
347
|
-
"helpGroup": "GLOBAL",
|
|
348
|
-
"name": "non-interactive",
|
|
349
|
-
"summary": "Disable interactive outputs, useful for CI",
|
|
350
|
-
"allowNo": false,
|
|
351
|
-
"type": "boolean"
|
|
352
|
-
},
|
|
353
|
-
"target": {
|
|
354
|
-
"char": "t",
|
|
355
|
-
"description": "Raycast app target",
|
|
356
|
-
"helpGroup": "GLOBAL",
|
|
357
|
-
"hidden": true,
|
|
358
|
-
"name": "target",
|
|
359
|
-
"hasDynamicHelp": false,
|
|
360
|
-
"multiple": false,
|
|
361
|
-
"options": [
|
|
362
|
-
"debug",
|
|
363
|
-
"internal",
|
|
364
|
-
"release",
|
|
365
|
-
"x",
|
|
366
|
-
"x-development",
|
|
367
|
-
"x-internal"
|
|
368
|
-
],
|
|
369
|
-
"type": "option"
|
|
370
|
-
},
|
|
371
|
-
"fix": {
|
|
372
|
-
"char": "f",
|
|
373
|
-
"description": "Attempt to fix linting issues",
|
|
374
|
-
"name": "fix",
|
|
375
|
-
"allowNo": false,
|
|
376
|
-
"type": "boolean"
|
|
377
|
-
},
|
|
378
|
-
"relaxed": {
|
|
379
|
-
"char": "r",
|
|
380
|
-
"description": "Use relaxed linting mode to skip validation of: package.json schema, icons and metadata.",
|
|
381
|
-
"name": "relaxed",
|
|
382
|
-
"allowNo": false,
|
|
383
|
-
"type": "boolean"
|
|
384
|
-
},
|
|
385
|
-
"schema": {
|
|
386
|
-
"char": "s",
|
|
387
|
-
"description": "Path to JSON schema for package.json validation \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
388
|
-
"hidden": true,
|
|
389
|
-
"name": "schema",
|
|
390
|
-
"default": "https://www.raycast.com/schemas/extension.json",
|
|
391
|
-
"hasDynamicHelp": false,
|
|
392
|
-
"multiple": false,
|
|
393
|
-
"type": "option"
|
|
394
|
-
}
|
|
395
|
-
},
|
|
396
|
-
"hasDynamicHelp": false,
|
|
397
|
-
"hiddenAliases": [],
|
|
398
|
-
"id": "lint",
|
|
399
|
-
"pluginAlias": "ray",
|
|
400
|
-
"pluginName": "ray",
|
|
401
|
-
"pluginType": "core",
|
|
402
|
-
"strict": true,
|
|
403
|
-
"enableJsonFlag": false,
|
|
404
|
-
"isESM": false,
|
|
405
|
-
"relativePath": [
|
|
406
|
-
"dist",
|
|
407
|
-
"commands",
|
|
408
|
-
"lint",
|
|
409
|
-
"index.js"
|
|
410
|
-
]
|
|
411
|
-
},
|
|
412
316
|
"login": {
|
|
413
317
|
"aliases": [],
|
|
414
318
|
"args": {},
|
|
@@ -781,6 +685,12 @@
|
|
|
781
685
|
"allowNo": false,
|
|
782
686
|
"type": "boolean"
|
|
783
687
|
},
|
|
688
|
+
"verbose": {
|
|
689
|
+
"description": "Print more details during the publishing process",
|
|
690
|
+
"name": "verbose",
|
|
691
|
+
"allowNo": false,
|
|
692
|
+
"type": "boolean"
|
|
693
|
+
},
|
|
784
694
|
"skip-validation": {
|
|
785
695
|
"char": "s",
|
|
786
696
|
"description": "Skip validation and always publish \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
@@ -1064,6 +974,102 @@
|
|
|
1064
974
|
"index.js"
|
|
1065
975
|
]
|
|
1066
976
|
},
|
|
977
|
+
"develop": {
|
|
978
|
+
"aliases": [
|
|
979
|
+
"dev"
|
|
980
|
+
],
|
|
981
|
+
"args": {},
|
|
982
|
+
"description": "Start the extension in development mode and watches for changes",
|
|
983
|
+
"flags": {
|
|
984
|
+
"exit-on-error": {
|
|
985
|
+
"aliases": [
|
|
986
|
+
"exitOnError"
|
|
987
|
+
],
|
|
988
|
+
"deprecateAliases": true,
|
|
989
|
+
"helpGroup": "GLOBAL",
|
|
990
|
+
"name": "exit-on-error",
|
|
991
|
+
"summary": "Always exit with non-zero code on error",
|
|
992
|
+
"allowNo": true,
|
|
993
|
+
"type": "boolean"
|
|
994
|
+
},
|
|
995
|
+
"emoji": {
|
|
996
|
+
"helpGroup": "GLOBAL",
|
|
997
|
+
"name": "emoji",
|
|
998
|
+
"summary": "Prefix output with emojis 🌈",
|
|
999
|
+
"allowNo": false,
|
|
1000
|
+
"type": "boolean"
|
|
1001
|
+
},
|
|
1002
|
+
"help": {
|
|
1003
|
+
"helpGroup": "GLOBAL",
|
|
1004
|
+
"name": "help",
|
|
1005
|
+
"summary": "Show the help message for the command",
|
|
1006
|
+
"allowNo": false,
|
|
1007
|
+
"type": "boolean"
|
|
1008
|
+
},
|
|
1009
|
+
"non-interactive": {
|
|
1010
|
+
"char": "I",
|
|
1011
|
+
"helpGroup": "GLOBAL",
|
|
1012
|
+
"name": "non-interactive",
|
|
1013
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
1014
|
+
"allowNo": false,
|
|
1015
|
+
"type": "boolean"
|
|
1016
|
+
},
|
|
1017
|
+
"target": {
|
|
1018
|
+
"char": "t",
|
|
1019
|
+
"description": "Raycast app target",
|
|
1020
|
+
"helpGroup": "GLOBAL",
|
|
1021
|
+
"hidden": true,
|
|
1022
|
+
"name": "target",
|
|
1023
|
+
"hasDynamicHelp": false,
|
|
1024
|
+
"multiple": false,
|
|
1025
|
+
"options": [
|
|
1026
|
+
"debug",
|
|
1027
|
+
"internal",
|
|
1028
|
+
"release",
|
|
1029
|
+
"x",
|
|
1030
|
+
"x-development",
|
|
1031
|
+
"x-internal"
|
|
1032
|
+
],
|
|
1033
|
+
"type": "option"
|
|
1034
|
+
},
|
|
1035
|
+
"print-tool-schemas": {
|
|
1036
|
+
"description": "Indicates whether to print the schema tools \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
1037
|
+
"hidden": true,
|
|
1038
|
+
"name": "print-tool-schemas",
|
|
1039
|
+
"allowNo": false,
|
|
1040
|
+
"type": "boolean"
|
|
1041
|
+
},
|
|
1042
|
+
"print-instructions": {
|
|
1043
|
+
"description": "Indicates whether to print the extension's instructions \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
1044
|
+
"hidden": true,
|
|
1045
|
+
"name": "print-instructions",
|
|
1046
|
+
"allowNo": false,
|
|
1047
|
+
"type": "boolean"
|
|
1048
|
+
},
|
|
1049
|
+
"print-tool-calls": {
|
|
1050
|
+
"description": "Indicates whether to print the inputs and outputs of tools when they are called from Raycast \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
1051
|
+
"hidden": true,
|
|
1052
|
+
"name": "print-tool-calls",
|
|
1053
|
+
"allowNo": false,
|
|
1054
|
+
"type": "boolean"
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
"hasDynamicHelp": false,
|
|
1058
|
+
"hiddenAliases": [],
|
|
1059
|
+
"id": "develop",
|
|
1060
|
+
"pluginAlias": "ray",
|
|
1061
|
+
"pluginName": "ray",
|
|
1062
|
+
"pluginType": "core",
|
|
1063
|
+
"strict": true,
|
|
1064
|
+
"enableJsonFlag": false,
|
|
1065
|
+
"isESM": false,
|
|
1066
|
+
"relativePath": [
|
|
1067
|
+
"dist",
|
|
1068
|
+
"commands",
|
|
1069
|
+
"develop",
|
|
1070
|
+
"index.js"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1067
1073
|
"version": {
|
|
1068
1074
|
"aliases": [],
|
|
1069
1075
|
"args": {},
|
|
@@ -1138,5 +1144,5 @@
|
|
|
1138
1144
|
]
|
|
1139
1145
|
}
|
|
1140
1146
|
},
|
|
1141
|
-
"version": "1.103.
|
|
1147
|
+
"version": "1.103.8"
|
|
1142
1148
|
}
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -479,7 +479,7 @@ export declare namespace AI {
|
|
|
479
479
|
/**
|
|
480
480
|
* The AI model to use to answer to the prompt.
|
|
481
481
|
*/
|
|
482
|
-
model?: Model
|
|
482
|
+
model?: Model;
|
|
483
483
|
/**
|
|
484
484
|
* Abort signal to cancel the request.
|
|
485
485
|
*/
|
|
@@ -492,112 +492,175 @@ export declare namespace AI {
|
|
|
492
492
|
export type Creativity = "none" | "low" | "medium" | "high" | "maximum" | number;
|
|
493
493
|
/**
|
|
494
494
|
* The AI model to use to answer to the prompt.
|
|
495
|
-
* @defaultValue `AI.Model["
|
|
495
|
+
* @defaultValue `AI.Model["OpenAI_GPT-4o_mini"]`
|
|
496
496
|
*/
|
|
497
497
|
export enum Model {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
"
|
|
502
|
-
"
|
|
503
|
-
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
|
|
509
|
-
"
|
|
510
|
-
"
|
|
498
|
+
"OpenAI_GPT-5_mini" = "openai-gpt-5-mini",
|
|
499
|
+
"OpenAI_GPT-5_nano" = "openai-gpt-5-nano",
|
|
500
|
+
"OpenAI_GPT-4.1" = "openai-gpt-4.1",
|
|
501
|
+
"OpenAI_GPT-4.1_mini" = "openai-gpt-4.1-mini",
|
|
502
|
+
"OpenAI_GPT-4.1_nano" = "openai-gpt-4.1-nano",
|
|
503
|
+
"OpenAI_GPT-4" = "openai-gpt-4",
|
|
504
|
+
"OpenAI_GPT-4_Turbo" = "openai-gpt-4-turbo",
|
|
505
|
+
"OpenAI_GPT-4o" = "openai-gpt-4o",
|
|
506
|
+
"OpenAI_GPT-4o_mini" = "openai-gpt-4o-mini",
|
|
507
|
+
"OpenAI_GPT-5" = "openai_o1-gpt-5",
|
|
508
|
+
"OpenAI_GPT-5_Codex" = "openai-gpt-5-codex",
|
|
509
|
+
"OpenAI_GPT-5.1" = "openai-gpt-5.1",
|
|
510
|
+
"OpenAI_GPT-5.1_Codex" = "openai-gpt-5.1-codex",
|
|
511
|
+
"OpenAI_GPT-5.1_Instant" = "openai-gpt-5.1-instant",
|
|
512
|
+
"OpenAI_o3" = "openai_o1-o3",
|
|
511
513
|
"OpenAI_o4-mini" = "openai_o1-o4-mini",
|
|
512
|
-
OpenAI_o1 = "openai_o1-o1",
|
|
513
|
-
OpenAI_o3 = "openai_o1-o3",
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
"
|
|
517
|
-
|
|
518
|
-
|
|
514
|
+
"OpenAI_o1" = "openai_o1-o1",
|
|
515
|
+
"OpenAI_o3-mini" = "openai_o1-o3-mini",
|
|
516
|
+
"Groq_GPT-OSS_20b" = "groq-openai/gpt-oss-20b",
|
|
517
|
+
"Groq_GPT-OSS_120b" = "groq-openai/gpt-oss-120b",
|
|
518
|
+
"Anthropic_Claude_3.5_Haiku" = "anthropic-claude-haiku",
|
|
519
|
+
"Anthropic_Claude_4.5_Haiku" = "anthropic-claude-4-5-haiku",
|
|
520
|
+
"Anthropic_Claude_4_Sonnet" = "anthropic-claude-sonnet-4",
|
|
521
|
+
"Anthropic_Claude_4.5_Sonnet" = "anthropic-claude-sonnet-4-5",
|
|
522
|
+
"Anthropic_Claude_4_Opus" = "anthropic-claude-opus-4",
|
|
519
523
|
"Anthropic_Claude_4.1_Opus" = "anthropic-claude-opus-4-1",
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
DeepSeek_V3 = "together-deepseek-ai/DeepSeek-V3",
|
|
535
|
-
"DeepSeek_R1_Distill_Llama_3.3_70B" = "groq-deepseek-r1-distill-llama-70b",
|
|
536
|
-
"Google_Gemini_2.0_Flash" = "google-gemini-2.0-flash",
|
|
537
|
-
"Google_Gemini_2.5_Flash_Lite" = "google-gemini-2.5-flash-lite",
|
|
538
|
-
"Google_Gemini_2.5_Flash" = "google-gemini-2.5-flash",
|
|
524
|
+
"Perplexity_Sonar" = "perplexity-sonar",
|
|
525
|
+
"Perplexity_Sonar_Pro" = "perplexity-sonar-pro",
|
|
526
|
+
"Groq_Llama_4_Scout" = "groq-meta-llama/llama-4-scout-17b-16e-instruct",
|
|
527
|
+
"Groq_Llama_3.3_70B" = "groq-llama-3.3-70b-versatile",
|
|
528
|
+
"Groq_Llama_3.1_8B" = "groq-llama-3.1-8b-instant",
|
|
529
|
+
"Together_AI_Llama_3.1_405B" = "together-meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo",
|
|
530
|
+
"Mistral_Nemo" = "mistral-open-mistral-nemo",
|
|
531
|
+
"Mistral_Large" = "mistral-mistral-large-latest",
|
|
532
|
+
"Mistral_Medium" = "mistral-mistral-medium-latest",
|
|
533
|
+
"Mistral_Small_3" = "mistral-mistral-small-latest",
|
|
534
|
+
"Mistral_Codestral" = "mistral-codestral-latest",
|
|
535
|
+
"Groq_Kimi_K2_Instruct" = "groq-moonshotai/kimi-k2-instruct",
|
|
536
|
+
"Groq_Qwen3-32B" = "groq-qwen/qwen3-32b",
|
|
537
|
+
"Google_Gemini_3_Pro" = "google-gemini-3-pro",
|
|
539
538
|
"Google_Gemini_2.5_Pro" = "google-gemini-2.5-pro",
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
539
|
+
"Google_Gemini_2.5_Flash" = "google-gemini-2.5-flash",
|
|
540
|
+
"Google_Gemini_2.5_Flash_Lite" = "google-gemini-2.5-flash-lite",
|
|
541
|
+
"Google_Gemini_2.0_Flash" = "google-gemini-2.0-flash",
|
|
542
|
+
"Together_AI_Qwen3-235B-A22B-Instruct-2507-tput" = "together-Qwen/Qwen3-235B-A22B-Instruct-2507-tput",
|
|
543
|
+
"Together_AI_DeepSeek-R1" = "together-deepseek-ai/DeepSeek-R1",
|
|
544
|
+
"Together_AI_DeepSeek-V3" = "together-deepseek-ai/DeepSeek-V3",
|
|
545
|
+
"xAI_Grok-4.1_Fast" = "xai-grok-4-1-fast",
|
|
546
|
+
"xAI_Grok-4" = "xai-grok-4",
|
|
547
|
+
"xAI_Grok-4_Fast" = "xai-grok-4-fast",
|
|
548
|
+
"xAI_Grok_Code_Fast_1" = "xai-grok-code-fast",
|
|
549
|
+
"xAI_Grok-3_Beta" = "xai-grok-3",
|
|
550
|
+
"xAI_Grok-3_Mini_Beta" = "xai-grok-3-mini",
|
|
551
|
+
"xAI_Grok-2" = "xai-grok-2-latest",
|
|
552
|
+
/** @deprecated Use `AI.Model["Anthropic_Claude_4.5_Sonnet"]` instead */
|
|
553
|
+
"Anthropic_Claude_3.7_Sonnet" = "anthropic-claude-3-7-sonnet-latest",
|
|
554
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4o_mini"]` instead */
|
|
555
|
+
"OpenAI_GPT3.5-turbo-instruct" = "openai-gpt-4o-mini",
|
|
547
556
|
/** @deprecated Use `AI.Model["Anthropic_Claude_4.1_Opus"]` instead */
|
|
548
|
-
Anthropic_Claude_Opus = "anthropic-claude-opus-4-1",
|
|
557
|
+
"Anthropic_Claude_Opus" = "anthropic-claude-opus-4-1",
|
|
549
558
|
/** @deprecated Use `AI.Model["Google_Gemini_2.5_Flash"]` instead */
|
|
550
559
|
"Google_Gemini_2.0_Flash_Thinking" = "google-gemini-2.5-flash",
|
|
551
|
-
/** @deprecated Use `AI.Model["
|
|
552
|
-
"
|
|
553
|
-
/** @deprecated Use `AI.Model["
|
|
554
|
-
|
|
555
|
-
/** @deprecated Use `AI.Model
|
|
556
|
-
|
|
557
|
-
/** @deprecated Use `AI.Model.
|
|
558
|
-
|
|
559
|
-
/** @deprecated Use `AI.Model["
|
|
560
|
-
|
|
561
|
-
/** @deprecated Use `AI.Model
|
|
562
|
-
|
|
563
|
-
/** @deprecated Use `AI.Model
|
|
564
|
-
Perplexity_Llama3_Sonar_Small = "perplexity-sonar",
|
|
565
|
-
/** @deprecated Use `AI.Model["OpenAI_GPT4o-mini"]` instead */
|
|
560
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.3_70B"]` instead */
|
|
561
|
+
"Llama2_70B" = "groq-llama-3.3-70b-versatile",
|
|
562
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
563
|
+
"Perplexity_Sonar_Medium_Online" = "perplexity-sonar",
|
|
564
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
565
|
+
"Perplexity_Sonar_Small_Online" = "perplexity-sonar",
|
|
566
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.3_70B"]` instead */
|
|
567
|
+
"Codellama_70B_instruct" = "groq-llama-3.3-70b-versatile",
|
|
568
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
569
|
+
"Perplexity_Llama3_Sonar_Large" = "perplexity-sonar",
|
|
570
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
571
|
+
"Perplexity_Llama3_Sonar_Small" = "perplexity-sonar",
|
|
572
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4o_mini"]` instead */
|
|
566
573
|
"OpenAI_GPT3.5-turbo" = "openai-gpt-4o-mini",
|
|
567
|
-
/** @deprecated Use `AI.Model["
|
|
574
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.3_70B"]` instead */
|
|
568
575
|
"Llama3.1_70B" = "groq-llama-3.3-70b-versatile",
|
|
569
|
-
/** @deprecated Use `AI.Model
|
|
576
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar_Pro"]` instead */
|
|
570
577
|
"Perplexity_Llama3.1_Sonar_Huge" = "perplexity-sonar-pro",
|
|
571
|
-
/** @deprecated Use `AI.Model
|
|
578
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
572
579
|
"Perplexity_Llama3.1_Sonar_Large" = "perplexity-sonar",
|
|
573
|
-
/** @deprecated Use `AI.Model
|
|
580
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar"]` instead */
|
|
574
581
|
"Perplexity_Llama3.1_Sonar_Small" = "perplexity-sonar",
|
|
575
|
-
/** @deprecated Use `AI.Model
|
|
576
|
-
"Mistral_Large2" = "mistral-large",
|
|
577
|
-
/** @deprecated Use `AI.Model["
|
|
578
|
-
"Groq_DeepSeek_R1_Distill_Llama_3.3_70B" = "
|
|
579
|
-
/** @deprecated Use `AI.Model
|
|
582
|
+
/** @deprecated Use `AI.Model["Mistral_Large"]` instead */
|
|
583
|
+
"Mistral_Large2" = "mistral-mistral-large-latest",
|
|
584
|
+
/** @deprecated Use `AI.Model["Together_AI_DeepSeek-R1"]` instead */
|
|
585
|
+
"Groq_DeepSeek_R1_Distill_Llama_3.3_70B" = "together-deepseek-ai/DeepSeek-R1",
|
|
586
|
+
/** @deprecated Use `AI.Model["Together_AI_DeepSeek-R1"]` instead */
|
|
580
587
|
"Together_DeepSeek_R1" = "together-deepseek-ai/DeepSeek-R1",
|
|
581
|
-
/** @deprecated Use `AI.Model
|
|
582
|
-
"MixtraL_8x7B" = "mistral-nemo",
|
|
588
|
+
/** @deprecated Use `AI.Model["Mistral_Nemo"]` instead */
|
|
589
|
+
"MixtraL_8x7B" = "mistral-open-mistral-nemo",
|
|
583
590
|
/** @deprecated Use `AI.Model["Google_Gemini_2.5_Flash"]` instead */
|
|
584
591
|
"Google_Gemini_1.5_Flash" = "google-gemini-2.5-flash",
|
|
585
592
|
/** @deprecated Use `AI.Model["Google_Gemini_2.5_Flash"]` instead */
|
|
586
593
|
"Google_Gemini_1.5_Pro" = "google-gemini-2.5-flash",
|
|
587
|
-
/** @deprecated Use `AI.Model
|
|
588
|
-
Mixtral_8x7B = "mistral-nemo",
|
|
589
|
-
/** @deprecated Use `AI.Model["
|
|
594
|
+
/** @deprecated Use `AI.Model["Mistral_Nemo"]` instead */
|
|
595
|
+
"Mixtral_8x7B" = "mistral-open-mistral-nemo",
|
|
596
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4o_mini"]` instead */
|
|
590
597
|
"Qwen_2.5_32B" = "openai-gpt-4o-mini",
|
|
591
|
-
/** @deprecated Use `AI.Model
|
|
598
|
+
/** @deprecated Use `AI.Model["OpenAI_o1"]` instead */
|
|
592
599
|
"OpenAI_o1-preview" = "openai_o1-o1",
|
|
593
600
|
/** @deprecated Use `AI.Model["OpenAI_o4-mini"]` instead */
|
|
594
601
|
"OpenAI_o1-mini" = "openai_o1-o4-mini",
|
|
595
|
-
/** @deprecated Use `AI.Model["
|
|
596
|
-
Llama3_70B = "groq-llama-3.3-70b-versatile"
|
|
602
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.3_70B"]` instead */
|
|
603
|
+
"Llama3_70B" = "groq-llama-3.3-70b-versatile",
|
|
604
|
+
/** @deprecated Use `AI.Model["Anthropic_Claude_4.5_Sonnet"]` instead */
|
|
605
|
+
"Anthropic_Claude_Sonnet_3.7" = "anthropic-claude-3-7-sonnet-latest",
|
|
606
|
+
/** @deprecated Use `AI.Model["Anthropic_Claude_4.5_Sonnet"]` instead */
|
|
607
|
+
"Anthropic_Claude_Sonnet" = "anthropic-claude-sonnet-4-5",
|
|
608
|
+
/** @deprecated Use `AI.Model["Perplexity_Sonar_Pro"]` instead */
|
|
609
|
+
"Perplexity_Sonar_Reasoning" = "perplexity-sonar-pro",
|
|
610
|
+
/** @deprecated Use `AI.Model["Groq_GPT-OSS_20b"]` instead */
|
|
611
|
+
"OpenAI_GPT_OSS_20b" = "groq-openai/gpt-oss-20b",
|
|
612
|
+
/** @deprecated Use `AI.Model["Groq_GPT-OSS_120b"]` instead */
|
|
613
|
+
"OpenAI_GPT_OSS_120b" = "groq-openai/gpt-oss-120b",
|
|
614
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-5"]` instead */
|
|
615
|
+
"OpenAI_GPT5" = "openai_o1-gpt-5",
|
|
616
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-5_mini"]` instead */
|
|
617
|
+
"OpenAI_GPT5-mini" = "openai-gpt-5-mini",
|
|
618
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-5_nano"]` instead */
|
|
619
|
+
"OpenAI_GPT5-nano" = "openai-gpt-5-nano",
|
|
620
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4"]` instead */
|
|
621
|
+
"OpenAI_GPT4" = "openai-gpt-4",
|
|
622
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4_Turbo"]` instead */
|
|
623
|
+
"OpenAI_GPT4-turbo" = "openai-gpt-4-turbo",
|
|
624
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4.1"]` instead */
|
|
625
|
+
"OpenAI_GPT4.1" = "openai-gpt-4.1",
|
|
626
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4.1_nano"]` instead */
|
|
627
|
+
"OpenAI_GPT4.1-nano" = "openai-gpt-4.1-nano",
|
|
628
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4.1_mini"]` instead */
|
|
629
|
+
"OpenAI_GPT4.1-mini" = "openai-gpt-4.1-mini",
|
|
630
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4o"]` instead */
|
|
631
|
+
"OpenAI_GPT4o" = "openai-gpt-4o",
|
|
632
|
+
/** @deprecated Use `AI.Model["OpenAI_GPT-4o_mini"]` instead */
|
|
633
|
+
"OpenAI_GPT4o-mini" = "openai-gpt-4o-mini",
|
|
634
|
+
/** @deprecated Use `AI.Model["Anthropic_Claude_3.5_Haiku"]` instead */
|
|
635
|
+
"Anthropic_Claude_Haiku" = "anthropic-claude-haiku",
|
|
636
|
+
/** @deprecated Use `AI.Model["Mistral_Small_3"]` instead */
|
|
637
|
+
"Mistral_Small" = "mistral-mistral-small-latest",
|
|
638
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.3_70B"]` instead */
|
|
639
|
+
"Llama3.3_70B" = "groq-llama-3.3-70b-versatile",
|
|
640
|
+
/** @deprecated Use `AI.Model["Groq_Llama_3.1_8B"]` instead */
|
|
641
|
+
"Llama3.1_8B" = "groq-llama-3.1-8b-instant",
|
|
642
|
+
/** @deprecated Use `AI.Model["Together_AI_Llama_3.1_405B"]` instead */
|
|
643
|
+
"Llama3.1_405B" = "together-meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo",
|
|
644
|
+
/** @deprecated Use `AI.Model["Groq_Llama_4_Scout"]` instead */
|
|
645
|
+
"Llama4_Scout" = "groq-meta-llama/llama-4-scout-17b-16e-instruct",
|
|
646
|
+
/** @deprecated Use `AI.Model["Together_AI_DeepSeek-R1"]` instead */
|
|
647
|
+
"DeepSeek_R1" = "together-deepseek-ai/DeepSeek-R1",
|
|
648
|
+
/** @deprecated Use `AI.Model["Together_AI_DeepSeek-V3"]` instead */
|
|
649
|
+
"DeepSeek_V3" = "together-deepseek-ai/DeepSeek-V3",
|
|
650
|
+
/** @deprecated Use `AI.Model["xAI_Grok-2"]` instead */
|
|
651
|
+
"xAI_Grok_2" = "xai-grok-2-latest",
|
|
652
|
+
/** @deprecated Use `AI.Model["xAI_Grok-3_Beta"]` instead */
|
|
653
|
+
"xAI_Grok_3" = "xai-grok-3",
|
|
654
|
+
/** @deprecated Use `AI.Model["xAI_Grok-4"]` instead */
|
|
655
|
+
"xAI_Grok_4" = "xai-grok-4",
|
|
656
|
+
/** @deprecated Use `AI.Model["xAI_Grok-3_Mini_Beta"]` instead */
|
|
657
|
+
"xAI_Grok_3_Mini" = "xai-grok-3-mini",
|
|
658
|
+
/** @deprecated Use `AI.Model["Groq_Qwen3-32B"]` instead */
|
|
659
|
+
"Groq_Qwen3_32B" = "groq-qwen/qwen3-32b",
|
|
660
|
+
/** @deprecated Use `AI.Model["Together_AI_Qwen3-235B-A22B-Instruct-2507-tput"]` instead */
|
|
661
|
+
"Groq_Qwen3_235B_A22B_Instruct_2507_tput" = "together-Qwen/Qwen3-235B-A22B-Instruct-2507-tput"
|
|
597
662
|
}
|
|
598
663
|
|
|
599
|
-
/** @deprecated Use the `AI.Model` enum instead */
|
|
600
|
-
export type __DeprecatedModelUnion = "openai-gpt-3.5-turbo-instruct" | "openai-gpt-3.5-turbo" | "openai-gpt-4" | "openai-gpt-4-turbo" | "anthropic-claude-haiku" | "anthropic-claude-opus" | "anthropic-claude-sonnet" | "perplexity-sonar-medium-online" | "perplexity-sonar-small-online" | "llama2-70b" | "mixtral-8x7b" | "codellama-70b-instruct" | "gpt-3.5-turbo" | "gpt-3.5-turbo-instruct" | "gpt-4" | "text-davinci-003";
|
|
601
664
|
}
|
|
602
665
|
|
|
603
666
|
export declare namespace Alert {
|