ace-llm 0.36.3 → 0.38.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.
- checksums.yaml +4 -4
- data/.ace-defaults/llm/providers/anthropic.yml +29 -14
- data/.ace-defaults/llm/providers/google.yml +28 -14
- data/.ace-defaults/llm/providers/groq.yml +60 -5
- data/.ace-defaults/llm/providers/lmstudio.yml +1 -1
- data/.ace-defaults/llm/providers/mistral.yml +45 -14
- data/.ace-defaults/llm/providers/openai.yml +46 -14
- data/.ace-defaults/llm/providers/openrouter.yml +229 -32
- data/.ace-defaults/llm/providers/togetherai.yml +43 -10
- data/.ace-defaults/llm/providers/xai.yml +21 -8
- data/.ace-defaults/llm/providers/zai.yml +17 -6
- data/CHANGELOG.md +43 -0
- data/README.md +2 -0
- data/exe/ace-llm +2 -1
- data/handbook/guides/llm-query-tool-reference.g.md +78 -626
- data/lib/ace/llm/atoms/provider_config_validator.rb +53 -0
- data/lib/ace/llm/cli/commands/query.rb +10 -2
- data/lib/ace/llm/molecules/model_limit_resolver.rb +88 -0
- data/lib/ace/llm/version.rb +1 -1
- data/lib/ace/llm.rb +1 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e68c5905da8f776b41366c633f4172533889ef334a4a2e5697ace238427dd724
|
|
4
|
+
data.tar.gz: f38899d8cf85c3bbaadf256c995c17c144a610bf5bc8d2f0812b71c075c4e82d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 722641fee270953ca1bd56ccea04c2c8deab37a5ec4aa0e1afefa8e693af79cb38276027c29d139ca1467a19341c38e7786b8a02971350d209383ade7a49f693
|
|
7
|
+
data.tar.gz: 780613ebe9fbceedde6f095a9fc4491a320798582dae621a8da46ba29011118283020d702cf9afa7b1bf7198dbeedf6fb9dee11a312ff117fe1b975aaaba2b0c
|
|
@@ -1,15 +1,30 @@
|
|
|
1
1
|
name: anthropic
|
|
2
|
-
last_synced: 2026-
|
|
2
|
+
last_synced: 2026-04-24
|
|
3
3
|
class: Ace::LLM::Organisms::AnthropicClient
|
|
4
4
|
gem: ace-llm
|
|
5
|
-
context_limit: 1000000 # Claude models have 1M context window
|
|
6
5
|
models:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
- claude-haiku-4-5
|
|
7
|
+
- claude-haiku-4-5-20251001
|
|
8
|
+
- claude-opus-4-5
|
|
9
|
+
- claude-opus-4-5-20251101
|
|
10
|
+
- claude-opus-4-6
|
|
11
|
+
- claude-opus-4-7
|
|
12
|
+
- claude-sonnet-4-5
|
|
13
|
+
- claude-sonnet-4-5-20250929
|
|
14
|
+
- claude-sonnet-4-6
|
|
15
|
+
limits:
|
|
16
|
+
default:
|
|
17
|
+
context: 200000
|
|
18
|
+
output: 64000
|
|
19
|
+
models:
|
|
20
|
+
claude-opus-4-6:
|
|
21
|
+
context: 1000000
|
|
22
|
+
output: 128000
|
|
23
|
+
claude-opus-4-7:
|
|
24
|
+
context: 1000000
|
|
25
|
+
output: 128000
|
|
26
|
+
claude-sonnet-4-6:
|
|
27
|
+
context: 1000000
|
|
13
28
|
aliases:
|
|
14
29
|
global:
|
|
15
30
|
opus: anthropic:o
|
|
@@ -17,18 +32,18 @@ aliases:
|
|
|
17
32
|
haiku: anthropic:h
|
|
18
33
|
csonnet: anthropic:s
|
|
19
34
|
model:
|
|
20
|
-
s: claude-sonnet-4-
|
|
21
|
-
o: claude-opus-4-
|
|
35
|
+
s: claude-sonnet-4-6
|
|
36
|
+
o: claude-opus-4-6
|
|
22
37
|
h: claude-haiku-4-5
|
|
23
38
|
api_key:
|
|
24
39
|
env: ANTHROPIC_API_KEY
|
|
25
40
|
required: true
|
|
26
41
|
description: Anthropic API key
|
|
27
42
|
capabilities:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
43
|
+
- text_generation
|
|
44
|
+
- streaming
|
|
45
|
+
- function_calling
|
|
46
|
+
- vision
|
|
32
47
|
default_options:
|
|
33
48
|
temperature: 0.7
|
|
34
49
|
max_tokens: 16384
|
|
@@ -1,16 +1,29 @@
|
|
|
1
1
|
name: google
|
|
2
|
-
last_synced: 2026-
|
|
2
|
+
last_synced: 2026-04-24
|
|
3
3
|
class: Ace::LLM::Organisms::GoogleClient
|
|
4
4
|
gem: ace-llm
|
|
5
|
-
context_limit: 1000000 # Gemini models have 1M+ context window
|
|
6
5
|
models:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
- gemini-2.5-flash
|
|
7
|
+
- gemini-2.5-flash-lite
|
|
8
|
+
- gemini-2.5-pro
|
|
9
|
+
- gemini-3-flash-preview
|
|
10
|
+
- gemini-3.1-flash-lite-preview
|
|
11
|
+
- gemini-3.1-pro-preview
|
|
12
|
+
- gemini-flash-latest
|
|
13
|
+
- gemini-flash-lite-latest
|
|
14
|
+
- gemma-4-26b-a4b-it
|
|
15
|
+
- gemma-4-31b-it
|
|
16
|
+
limits:
|
|
17
|
+
default:
|
|
18
|
+
context: 1048576
|
|
19
|
+
output: 65536
|
|
20
|
+
models:
|
|
21
|
+
gemma-4-26b-a4b-it:
|
|
22
|
+
context: 256000
|
|
23
|
+
output: 8192
|
|
24
|
+
gemma-4-31b-it:
|
|
25
|
+
context: 256000
|
|
26
|
+
output: 8192
|
|
14
27
|
aliases:
|
|
15
28
|
global:
|
|
16
29
|
gflash: google:flash
|
|
@@ -22,15 +35,16 @@ aliases:
|
|
|
22
35
|
pro: gemini-2.5-pro
|
|
23
36
|
pro-preview: gemini-3.1-pro-preview
|
|
24
37
|
flash-preview: gemini-3-flash-preview
|
|
38
|
+
lite-preview: gemini-3.1-flash-lite-preview
|
|
25
39
|
api_key:
|
|
26
40
|
env: GEMINI_API_KEY
|
|
27
41
|
required: true
|
|
28
42
|
description: Google AI Studio API key
|
|
29
43
|
capabilities:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
44
|
+
- text_generation
|
|
45
|
+
- streaming
|
|
46
|
+
- function_calling
|
|
47
|
+
- vision
|
|
34
48
|
default_options:
|
|
35
49
|
temperature: 0.7
|
|
36
|
-
max_tokens:
|
|
50
|
+
max_tokens: 65536
|
|
@@ -1,11 +1,66 @@
|
|
|
1
1
|
name: groq
|
|
2
|
+
last_synced: 2026-04-24
|
|
2
3
|
class: Ace::LLM::Organisms::GroqClient
|
|
3
4
|
gem: ace-llm
|
|
4
|
-
context_limit: 128000 # Groq models typically have 128K context window
|
|
5
5
|
models:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
- allam-2-7b
|
|
7
|
+
- canopylabs/orpheus-arabic-saudi
|
|
8
|
+
- canopylabs/orpheus-v1-english
|
|
9
|
+
- groq/compound
|
|
10
|
+
- groq/compound-mini
|
|
11
|
+
- llama-3.1-8b-instant
|
|
12
|
+
- llama-3.3-70b-versatile
|
|
13
|
+
- meta-llama/llama-4-scout-17b-16e-instruct
|
|
14
|
+
- meta-llama/llama-prompt-guard-2-22m
|
|
15
|
+
- meta-llama/llama-prompt-guard-2-86m
|
|
16
|
+
- moonshotai/kimi-k2-instruct-0905
|
|
17
|
+
- openai/gpt-oss-120b
|
|
18
|
+
- openai/gpt-oss-20b
|
|
19
|
+
- openai/gpt-oss-safeguard-20b
|
|
20
|
+
- qwen/qwen3-32b
|
|
21
|
+
- whisper-large-v3
|
|
22
|
+
- whisper-large-v3-turbo
|
|
23
|
+
limits:
|
|
24
|
+
default:
|
|
25
|
+
context: 131072
|
|
26
|
+
output: 65536
|
|
27
|
+
models:
|
|
28
|
+
allam-2-7b:
|
|
29
|
+
context: 4096
|
|
30
|
+
output: 4096
|
|
31
|
+
canopylabs/orpheus-arabic-saudi:
|
|
32
|
+
context: 4000
|
|
33
|
+
output: 50000
|
|
34
|
+
canopylabs/orpheus-v1-english:
|
|
35
|
+
context: 4000
|
|
36
|
+
output: 50000
|
|
37
|
+
groq/compound:
|
|
38
|
+
output: 8192
|
|
39
|
+
groq/compound-mini:
|
|
40
|
+
output: 8192
|
|
41
|
+
llama-3.1-8b-instant:
|
|
42
|
+
output: 131072
|
|
43
|
+
llama-3.3-70b-versatile:
|
|
44
|
+
output: 32768
|
|
45
|
+
meta-llama/llama-4-scout-17b-16e-instruct:
|
|
46
|
+
output: 8192
|
|
47
|
+
meta-llama/llama-prompt-guard-2-22m:
|
|
48
|
+
context: 512
|
|
49
|
+
output: 512
|
|
50
|
+
meta-llama/llama-prompt-guard-2-86m:
|
|
51
|
+
context: 512
|
|
52
|
+
output: 512
|
|
53
|
+
moonshotai/kimi-k2-instruct-0905:
|
|
54
|
+
context: 262144
|
|
55
|
+
output: 16384
|
|
56
|
+
qwen/qwen3-32b:
|
|
57
|
+
output: 40960
|
|
58
|
+
whisper-large-v3:
|
|
59
|
+
context: 448
|
|
60
|
+
output: 448
|
|
61
|
+
whisper-large-v3-turbo:
|
|
62
|
+
context: 448
|
|
63
|
+
output: 448
|
|
9
64
|
aliases:
|
|
10
65
|
global:
|
|
11
66
|
groq: groq:openai/gpt-oss-120b
|
|
@@ -23,7 +78,7 @@ api_key:
|
|
|
23
78
|
required: true
|
|
24
79
|
description: Groq API key
|
|
25
80
|
capabilities:
|
|
26
|
-
|
|
81
|
+
- text_generation
|
|
27
82
|
default_options:
|
|
28
83
|
temperature: 0.7
|
|
29
84
|
max_tokens: 16384
|
|
@@ -2,7 +2,7 @@ name: lmstudio
|
|
|
2
2
|
last_synced: 2025-12-05
|
|
3
3
|
class: Ace::LLM::Organisms::LMStudioClient
|
|
4
4
|
gem: ace-llm
|
|
5
|
-
context_limit: 128000
|
|
5
|
+
context_limit: 128000
|
|
6
6
|
# Models are user-defined locally in LM Studio and not synced from models.dev.
|
|
7
7
|
# This list is intentionally empty.
|
|
8
8
|
models:
|
|
@@ -1,16 +1,45 @@
|
|
|
1
1
|
name: mistral
|
|
2
|
-
last_synced:
|
|
2
|
+
last_synced: 2026-04-24
|
|
3
3
|
class: Ace::LLM::Organisms::MistralClient
|
|
4
4
|
gem: ace-llm
|
|
5
|
-
context_limit: 128000 # Mistral Large has 128K context window
|
|
6
5
|
models:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
- codestral-latest
|
|
7
|
+
- devstral-2512
|
|
8
|
+
- devstral-medium-2507
|
|
9
|
+
- devstral-medium-latest
|
|
10
|
+
- devstral-small-2507
|
|
11
|
+
- labs-devstral-small-2512
|
|
12
|
+
- mistral-large-latest
|
|
13
|
+
- mistral-medium-2508
|
|
14
|
+
- mistral-medium-latest
|
|
15
|
+
- mistral-small-2603
|
|
16
|
+
- mistral-small-latest
|
|
17
|
+
limits:
|
|
18
|
+
default:
|
|
19
|
+
context: 262144
|
|
20
|
+
output: 262144
|
|
21
|
+
models:
|
|
22
|
+
codestral-latest:
|
|
23
|
+
context: 256000
|
|
24
|
+
output: 4096
|
|
25
|
+
devstral-medium-2507:
|
|
26
|
+
context: 128000
|
|
27
|
+
output: 128000
|
|
28
|
+
devstral-small-2507:
|
|
29
|
+
context: 128000
|
|
30
|
+
output: 128000
|
|
31
|
+
labs-devstral-small-2512:
|
|
32
|
+
context: 256000
|
|
33
|
+
output: 256000
|
|
34
|
+
mistral-medium-latest:
|
|
35
|
+
context: 128000
|
|
36
|
+
output: 16384
|
|
37
|
+
mistral-small-2603:
|
|
38
|
+
context: 256000
|
|
39
|
+
output: 256000
|
|
40
|
+
mistral-small-latest:
|
|
41
|
+
context: 256000
|
|
42
|
+
output: 256000
|
|
14
43
|
aliases:
|
|
15
44
|
global:
|
|
16
45
|
mistral-large: mistral:large
|
|
@@ -19,15 +48,17 @@ aliases:
|
|
|
19
48
|
large: mistral-large-latest
|
|
20
49
|
medium: mistral-medium-latest
|
|
21
50
|
small: mistral-small-latest
|
|
22
|
-
|
|
51
|
+
dev-m: devstral-medium-latest
|
|
52
|
+
dev-s: labs-devstral-small-2512
|
|
53
|
+
dev: devstral-2512
|
|
23
54
|
api_key:
|
|
24
55
|
env: MISTRAL_API_KEY
|
|
25
56
|
required: true
|
|
26
57
|
description: Mistral AI API key
|
|
27
58
|
capabilities:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
59
|
+
- text_generation
|
|
60
|
+
- streaming
|
|
61
|
+
- code_generation
|
|
31
62
|
default_options:
|
|
32
63
|
temperature: 0.7
|
|
33
|
-
max_tokens: 16384
|
|
64
|
+
max_tokens: 16384
|
|
@@ -1,33 +1,65 @@
|
|
|
1
1
|
name: openai
|
|
2
|
-
last_synced:
|
|
2
|
+
last_synced: 2026-04-24
|
|
3
3
|
class: Ace::LLM::Organisms::OpenAIClient
|
|
4
4
|
gem: ace-llm
|
|
5
|
-
context_limit: 1050000 # GPT-5.x has 1.05M context window
|
|
6
5
|
models:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
- gpt-5.1
|
|
7
|
+
- gpt-5.1-chat-latest
|
|
8
|
+
- gpt-5.1-codex
|
|
9
|
+
- gpt-5.1-codex-max
|
|
10
|
+
- gpt-5.1-codex-mini
|
|
11
|
+
- gpt-5.2
|
|
12
|
+
- gpt-5.2-chat-latest
|
|
13
|
+
- gpt-5.2-pro
|
|
14
|
+
- gpt-5.3-chat-latest
|
|
15
|
+
- gpt-5.3-codex
|
|
16
|
+
- gpt-5.3-codex-spark
|
|
17
|
+
- gpt-5.4
|
|
18
|
+
- gpt-5.4-mini
|
|
19
|
+
- gpt-5.4-nano
|
|
20
|
+
- gpt-5.4-pro
|
|
21
|
+
limits:
|
|
22
|
+
default:
|
|
23
|
+
context: 400000
|
|
24
|
+
output: 128000
|
|
25
|
+
models:
|
|
26
|
+
gpt-5.1-chat-latest:
|
|
27
|
+
context: 128000
|
|
28
|
+
output: 16384
|
|
29
|
+
gpt-5.2-chat-latest:
|
|
30
|
+
context: 128000
|
|
31
|
+
output: 16384
|
|
32
|
+
gpt-5.3-chat-latest:
|
|
33
|
+
context: 128000
|
|
34
|
+
output: 16384
|
|
35
|
+
gpt-5.3-codex-spark:
|
|
36
|
+
context: 128000
|
|
37
|
+
output: 32000
|
|
38
|
+
gpt-5.4:
|
|
39
|
+
context: 1050000
|
|
40
|
+
gpt-5.4-pro:
|
|
41
|
+
context: 1050000
|
|
12
42
|
aliases:
|
|
13
43
|
global:
|
|
14
44
|
oagpt: openai:gpt
|
|
15
45
|
oacodex: openai:codex
|
|
16
46
|
oamax: openai:max
|
|
17
47
|
model:
|
|
18
|
-
gpt: gpt-5.
|
|
19
|
-
codex: gpt-5.
|
|
48
|
+
gpt: gpt-5.4
|
|
49
|
+
codex: gpt-5.3-codex
|
|
20
50
|
max: gpt-5.1-codex-max
|
|
51
|
+
mini: gpt-5.4-mini
|
|
52
|
+
nano: gpt-5.4-nano
|
|
21
53
|
api_key:
|
|
22
54
|
env: OPENAI_API_KEY
|
|
23
55
|
required: true
|
|
24
56
|
description: OpenAI API key
|
|
25
57
|
capabilities:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
58
|
+
- text_generation
|
|
59
|
+
- streaming
|
|
60
|
+
- function_calling
|
|
61
|
+
- vision
|
|
62
|
+
- embeddings
|
|
31
63
|
default_options:
|
|
32
64
|
temperature: 0.7
|
|
33
65
|
max_tokens: 16384
|
|
@@ -1,45 +1,242 @@
|
|
|
1
1
|
name: openrouter
|
|
2
|
+
last_synced: 2026-04-24
|
|
2
3
|
class: Ace::LLM::Organisms::OpenRouterClient
|
|
3
4
|
gem: ace-llm
|
|
4
|
-
context_limit: 128000 # Default context limit; varies by model
|
|
5
5
|
models:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
- anthropic/claude-opus-4.6
|
|
7
|
+
- anthropic/claude-opus-4.7
|
|
8
|
+
- anthropic/claude-sonnet-4.6
|
|
9
|
+
- arcee-ai/trinity-large-preview:free
|
|
10
|
+
- arcee-ai/trinity-large-thinking
|
|
11
|
+
- black-forest-labs/flux.2-klein-4b
|
|
12
|
+
- bytedance-seed/seedream-4.5
|
|
13
|
+
- deepseek/deepseek-v3.2
|
|
14
|
+
- google/gemini-3-flash-preview
|
|
15
|
+
- google/gemini-3.1-flash-lite-preview
|
|
16
|
+
- google/gemini-3.1-pro-preview
|
|
17
|
+
- google/gemini-3.1-pro-preview-customtools
|
|
18
|
+
- google/gemma-4-26b-a4b-it
|
|
19
|
+
- google/gemma-4-26b-a4b-it:free
|
|
20
|
+
- google/gemma-4-31b-it
|
|
21
|
+
- google/gemma-4-31b-it:free
|
|
22
|
+
- inception/mercury-2
|
|
23
|
+
- inception/mercury-edit-2
|
|
24
|
+
- liquid/lfm-2.5-1.2b-instruct:free
|
|
25
|
+
- liquid/lfm-2.5-1.2b-thinking:free
|
|
26
|
+
- minimax/minimax-m1
|
|
27
|
+
- minimax/minimax-m2.1
|
|
28
|
+
- minimax/minimax-m2.5
|
|
29
|
+
- minimax/minimax-m2.5:free
|
|
30
|
+
- minimax/minimax-m2.7
|
|
31
|
+
- mistralai/mistral-small-2603
|
|
32
|
+
- moonshotai/kimi-k2-0905:nitro
|
|
33
|
+
- moonshotai/kimi-k2-thinking
|
|
34
|
+
- moonshotai/kimi-k2.5
|
|
35
|
+
- moonshotai/kimi-k2.6
|
|
36
|
+
- nvidia/nemotron-3-super-120b-a12b
|
|
37
|
+
- nvidia/nemotron-3-super-120b-a12b:free
|
|
38
|
+
- openai/gpt-5.2
|
|
39
|
+
- openai/gpt-5.2-codex
|
|
40
|
+
- openai/gpt-5.2-pro
|
|
41
|
+
- openai/gpt-5.3-codex
|
|
42
|
+
- openai/gpt-5.4
|
|
43
|
+
- openai/gpt-5.4-mini
|
|
44
|
+
- openai/gpt-5.4-nano
|
|
45
|
+
- openai/gpt-5.4-pro
|
|
46
|
+
- openai/gpt-oss-120b:nitro
|
|
47
|
+
- openai/gpt-oss-20b:nitro
|
|
48
|
+
- openrouter/elephant-alpha
|
|
49
|
+
- openrouter/free
|
|
50
|
+
- qwen/qwen3-coder
|
|
51
|
+
- qwen/qwen3-max
|
|
52
|
+
- qwen/qwen3.5-397b-a17b
|
|
53
|
+
- qwen/qwen3.5-flash-02-23
|
|
54
|
+
- qwen/qwen3.5-plus-02-15
|
|
55
|
+
- qwen/qwen3.6-plus
|
|
56
|
+
- stepfun/step-3.5-flash
|
|
57
|
+
- x-ai/grok-4.20-beta
|
|
58
|
+
- x-ai/grok-4.20-multi-agent-beta
|
|
59
|
+
- xiaomi/mimo-v2-omni
|
|
60
|
+
- xiaomi/mimo-v2-pro
|
|
61
|
+
- z-ai/glm-4.6
|
|
62
|
+
- z-ai/glm-4.7
|
|
63
|
+
- z-ai/glm-4.7-flash
|
|
64
|
+
- z-ai/glm-5
|
|
65
|
+
- z-ai/glm-5-turbo
|
|
66
|
+
- z-ai/glm-5.1
|
|
67
|
+
limits:
|
|
68
|
+
default:
|
|
69
|
+
context: 262144
|
|
70
|
+
output: 262144
|
|
21
71
|
models:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
72
|
+
anthropic/claude-opus-4.6:
|
|
73
|
+
context: 1000000
|
|
74
|
+
output: 128000
|
|
75
|
+
anthropic/claude-opus-4.7:
|
|
76
|
+
context: 1000000
|
|
77
|
+
output: 128000
|
|
78
|
+
anthropic/claude-sonnet-4.6:
|
|
79
|
+
context: 1000000
|
|
80
|
+
output: 128000
|
|
81
|
+
arcee-ai/trinity-large-preview:free:
|
|
82
|
+
context: 131072
|
|
83
|
+
output: 131072
|
|
84
|
+
arcee-ai/trinity-large-thinking:
|
|
85
|
+
output: 80000
|
|
86
|
+
black-forest-labs/flux.2-klein-4b:
|
|
87
|
+
context: 40960
|
|
88
|
+
output: 40960
|
|
89
|
+
bytedance-seed/seedream-4.5:
|
|
90
|
+
context: 4096
|
|
91
|
+
output: 4096
|
|
92
|
+
deepseek/deepseek-v3.2:
|
|
93
|
+
context: 163840
|
|
94
|
+
output: 65536
|
|
95
|
+
google/gemini-3-flash-preview:
|
|
96
|
+
context: 1048576
|
|
97
|
+
output: 65536
|
|
98
|
+
google/gemini-3.1-flash-lite-preview:
|
|
99
|
+
context: 1048576
|
|
100
|
+
output: 65536
|
|
101
|
+
google/gemini-3.1-pro-preview:
|
|
102
|
+
context: 1048576
|
|
103
|
+
output: 65536
|
|
104
|
+
google/gemini-3.1-pro-preview-customtools:
|
|
105
|
+
context: 1048576
|
|
106
|
+
output: 65536
|
|
107
|
+
google/gemma-4-26b-a4b-it:free:
|
|
108
|
+
output: 32768
|
|
109
|
+
google/gemma-4-31b-it:free:
|
|
110
|
+
output: 32768
|
|
111
|
+
inception/mercury-2:
|
|
112
|
+
context: 128000
|
|
113
|
+
output: 50000
|
|
114
|
+
inception/mercury-edit-2:
|
|
115
|
+
context: 128000
|
|
116
|
+
output: 8192
|
|
117
|
+
liquid/lfm-2.5-1.2b-instruct:free:
|
|
118
|
+
context: 131072
|
|
119
|
+
output: 32768
|
|
120
|
+
liquid/lfm-2.5-1.2b-thinking:free:
|
|
121
|
+
context: 131072
|
|
122
|
+
output: 32768
|
|
123
|
+
minimax/minimax-m1:
|
|
124
|
+
context: 1000000
|
|
125
|
+
output: 40000
|
|
126
|
+
minimax/minimax-m2.1:
|
|
127
|
+
context: 204800
|
|
128
|
+
output: 131072
|
|
129
|
+
minimax/minimax-m2.5:
|
|
130
|
+
context: 204800
|
|
131
|
+
output: 131072
|
|
132
|
+
minimax/minimax-m2.5:free:
|
|
133
|
+
context: 204800
|
|
134
|
+
output: 131072
|
|
135
|
+
minimax/minimax-m2.7:
|
|
136
|
+
context: 204800
|
|
137
|
+
output: 131072
|
|
138
|
+
moonshotai/kimi-k2-0905:nitro:
|
|
139
|
+
output: 16384
|
|
140
|
+
openai/gpt-5.2:
|
|
141
|
+
context: 400000
|
|
142
|
+
output: 128000
|
|
143
|
+
openai/gpt-5.2-codex:
|
|
144
|
+
context: 400000
|
|
145
|
+
output: 128000
|
|
146
|
+
openai/gpt-5.2-pro:
|
|
147
|
+
context: 400000
|
|
148
|
+
output: 128000
|
|
149
|
+
openai/gpt-5.3-codex:
|
|
150
|
+
context: 400000
|
|
151
|
+
output: 128000
|
|
152
|
+
openai/gpt-5.4:
|
|
153
|
+
context: 1050000
|
|
154
|
+
output: 128000
|
|
155
|
+
openai/gpt-5.4-mini:
|
|
156
|
+
context: 400000
|
|
157
|
+
output: 128000
|
|
158
|
+
openai/gpt-5.4-nano:
|
|
159
|
+
context: 400000
|
|
160
|
+
output: 128000
|
|
161
|
+
openai/gpt-5.4-pro:
|
|
162
|
+
context: 1050000
|
|
163
|
+
output: 128000
|
|
164
|
+
openai/gpt-oss-120b:nitro:
|
|
165
|
+
context: 131072
|
|
166
|
+
output: 32768
|
|
167
|
+
openai/gpt-oss-20b:nitro:
|
|
168
|
+
context: 131072
|
|
169
|
+
output: 32768
|
|
170
|
+
openrouter/elephant-alpha:
|
|
171
|
+
output: 32768
|
|
172
|
+
openrouter/free:
|
|
173
|
+
context: 200000
|
|
174
|
+
output: 8000
|
|
175
|
+
qwen/qwen3-coder:
|
|
176
|
+
output: 66536
|
|
177
|
+
qwen/qwen3-max:
|
|
178
|
+
output: 32768
|
|
179
|
+
qwen/qwen3.5-397b-a17b:
|
|
180
|
+
output: 65536
|
|
181
|
+
qwen/qwen3.5-flash-02-23:
|
|
182
|
+
context: 1000000
|
|
183
|
+
output: 65536
|
|
184
|
+
qwen/qwen3.5-plus-02-15:
|
|
185
|
+
context: 1000000
|
|
186
|
+
output: 65536
|
|
187
|
+
qwen/qwen3.6-plus:
|
|
188
|
+
context: 1000000
|
|
189
|
+
output: 65536
|
|
190
|
+
stepfun/step-3.5-flash:
|
|
191
|
+
context: 256000
|
|
192
|
+
output: 256000
|
|
193
|
+
x-ai/grok-4.20-beta:
|
|
194
|
+
context: 2000000
|
|
195
|
+
output: 30000
|
|
196
|
+
x-ai/grok-4.20-multi-agent-beta:
|
|
197
|
+
context: 2000000
|
|
198
|
+
output: 30000
|
|
199
|
+
xiaomi/mimo-v2-omni:
|
|
200
|
+
output: 65536
|
|
201
|
+
xiaomi/mimo-v2-pro:
|
|
202
|
+
context: 1048576
|
|
203
|
+
output: 65536
|
|
204
|
+
z-ai/glm-4.6:
|
|
205
|
+
context: 200000
|
|
206
|
+
output: 128000
|
|
207
|
+
z-ai/glm-4.7:
|
|
208
|
+
context: 204800
|
|
209
|
+
output: 131072
|
|
210
|
+
z-ai/glm-4.7-flash:
|
|
211
|
+
context: 200000
|
|
212
|
+
output: 65535
|
|
213
|
+
z-ai/glm-5:
|
|
214
|
+
context: 202752
|
|
215
|
+
output: 131000
|
|
216
|
+
z-ai/glm-5-turbo:
|
|
217
|
+
context: 202752
|
|
218
|
+
output: 131072
|
|
219
|
+
z-ai/glm-5.1:
|
|
220
|
+
context: 202752
|
|
221
|
+
output: 131072
|
|
222
|
+
aliases:
|
|
223
|
+
model:
|
|
224
|
+
oss-nitro: openai/gpt-oss-120b:nitro
|
|
225
|
+
oss-small-nitro: openai/gpt-oss-20b:nitro
|
|
226
|
+
kimi-nitro: moonshotai/kimi-k2-0905:nitro
|
|
227
|
+
qwen3: qwen/qwen3-max
|
|
228
|
+
kimi: moonshotai/kimi-k2-0905
|
|
229
|
+
kimi-think: moonshotai/kimi-k2-thinking
|
|
230
|
+
deepseek: deepseek/deepseek-v3.2
|
|
231
|
+
qwen-coder: qwen/qwen3-coder
|
|
232
|
+
glm: z-ai/glm-4.6
|
|
233
|
+
minimax: minimax/minimax-m2.1
|
|
37
234
|
api_key:
|
|
38
235
|
env: OPENROUTER_API_KEY
|
|
39
236
|
required: true
|
|
40
237
|
description: OpenRouter API key
|
|
41
238
|
capabilities:
|
|
42
|
-
|
|
239
|
+
- text_generation
|
|
43
240
|
default_options:
|
|
44
241
|
temperature: 0.7
|
|
45
242
|
max_tokens: 16384
|