@mastra/mcp-docs-server 1.2.16 → 1.2.17-alpha.11
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/.docs/docs/agents/agent-approval.md +2 -0
- package/.docs/docs/agents/code-mode.md +2 -2
- package/.docs/docs/agents/processors.md +1 -1
- package/.docs/docs/agents/skills.md +1 -1
- package/.docs/docs/agents/using-tools.md +1 -1
- package/.docs/docs/capabilities/channels.md +34 -1
- package/.docs/docs/datasets/running-experiments.md +46 -0
- package/.docs/docs/harness/agent-controller.md +1 -1
- package/.docs/docs/mcp/overview.md +4 -5
- package/.docs/docs/server/request-context.md +21 -0
- package/.docs/docs/studio/overview.md +1 -1
- package/.docs/docs/workspace/filesystem.md +182 -153
- package/.docs/docs/workspace/lsp.md +4 -5
- package/.docs/docs/workspace/sandbox.md +234 -141
- package/.docs/docs/workspace/search.md +52 -4
- package/.docs/docs/workspace/skills.md +62 -33
- package/.docs/integrations/browsers/browser-viewer.md +2 -2
- package/.docs/integrations/databases/postgresql.md +2 -1
- package/.docs/integrations/file-storage/amazon-s3.md +1 -1
- package/.docs/integrations/file-storage/azure-blob.md +1 -1
- package/.docs/integrations/file-storage/google-cloud-storage.md +1 -1
- package/.docs/integrations/file-storage/mesa.md +1 -1
- package/.docs/integrations/file-storage/vercel-files.md +1 -1
- package/.docs/integrations/observability/opentelemetry.md +34 -2
- package/.docs/integrations/sandboxes/apple-container.md +1 -1
- package/.docs/integrations/sandboxes/daytona.md +1 -1
- package/.docs/integrations/sandboxes/docker.md +1 -1
- package/.docs/integrations/sandboxes/e2b.md +1 -1
- package/.docs/integrations/sandboxes/modal.md +1 -1
- package/.docs/models/environment-variables.md +1 -0
- package/.docs/models/gateways/openrouter.md +3 -1
- package/.docs/models/gateways/vercel.md +3 -2
- package/.docs/models/index.md +1 -1
- package/.docs/models/providers/abacus.md +14 -1
- package/.docs/models/providers/baseten.md +2 -1
- package/.docs/models/providers/cloudflare-workers-ai.md +3 -1
- package/.docs/models/providers/cortecs.md +5 -2
- package/.docs/models/providers/crossmodel.md +2 -2
- package/.docs/models/providers/crusoe.md +80 -0
- package/.docs/models/providers/deepinfra.md +5 -1
- package/.docs/models/providers/edenai.md +227 -23
- package/.docs/models/providers/empiriolabs.md +2 -1
- package/.docs/models/providers/fireworks-ai.md +26 -20
- package/.docs/models/providers/huggingface.md +6 -1
- package/.docs/models/providers/hyper.md +8 -7
- package/.docs/models/providers/kilo.md +14 -12
- package/.docs/models/providers/llmgateway.md +3 -2
- package/.docs/models/providers/merge-gateway.md +4 -1
- package/.docs/models/providers/nano-gpt.md +13 -10
- package/.docs/models/providers/nvidia.md +2 -1
- package/.docs/models/providers/ofox.md +32 -1
- package/.docs/models/providers/opencode-go.md +2 -1
- package/.docs/models/providers/opencode.md +3 -1
- package/.docs/models/providers/perplexity-agent.md +4 -2
- package/.docs/models/providers/qvac.md +35 -0
- package/.docs/models/providers/requesty.md +5 -3
- package/.docs/models/providers/zai-coding-plan.md +3 -2
- package/.docs/models/providers/zhipuai-coding-plan.md +2 -1
- package/.docs/models/providers.md +1 -0
- package/.docs/reference/agent-controller/agent-controller-class.md +26 -1
- package/.docs/reference/browser/browser-viewer.md +1 -1
- package/.docs/reference/configuration.md +1 -1
- package/.docs/reference/core/removeWorkspace.md +1 -1
- package/.docs/reference/datasets/addItem.md +5 -0
- package/.docs/reference/datasets/addItems.md +12 -2
- package/.docs/reference/datasets/startExperiment.md +1 -1
- package/.docs/reference/datasets/updateItem.md +3 -0
- package/.docs/reference/file-based-agents/workspace.md +3 -3
- package/.docs/reference/memory/observational-memory.md +4 -0
- package/.docs/reference/observability/tracing/exporters/mastra-platform-exporter.md +2 -0
- package/.docs/reference/processors/provider-history-compat.md +6 -5
- package/.docs/reference/processors/skill-search-processor.md +1 -1
- package/.docs/reference/pubsub/base.md +13 -3
- package/.docs/reference/pubsub/caching-pubsub.md +2 -0
- package/.docs/reference/pubsub/event-emitter.md +2 -0
- package/.docs/reference/pubsub/redis-streams.md +11 -3
- package/.docs/reference/tools/create-code-mode.md +1 -1
- package/.docs/reference/tools/create-tool.md +11 -3
- package/.docs/reference/tools/mcp-client.md +34 -5
- package/.docs/reference/tools/mcp-server.md +4 -1
- package/.docs/reference/workspace/local-filesystem.md +1 -1
- package/.docs/reference/workspace/local-sandbox.md +1 -1
- package/.docs/reference/workspace/workspace-class.md +52 -15
- package/CHANGELOG.md +50 -0
- package/package.json +4 -4
- package/.docs/docs/workspace/overview.md +0 -416
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Deep Infra
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 56 Deep Infra models through Mastra's model router. Authentication is handled automatically using the `DEEPINFRA_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Deep Infra documentation](https://deepinfra.com/models).
|
|
8
8
|
|
|
@@ -35,8 +35,11 @@ for await (const chunk of stream) {
|
|
|
35
35
|
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
36
36
|
| ------------------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
37
37
|
| `deepinfra/ByteDance/Seed-2.0-code` | 256K | | | | | | $0.50 | $3 |
|
|
38
|
+
| `deepinfra/ByteDance/Seed-2.0-mini` | 256K | | | | | | $0.10 | $0.40 |
|
|
39
|
+
| `deepinfra/ByteDance/Seed-2.0-pro` | 256K | | | | | | $0.50 | $3 |
|
|
38
40
|
| `deepinfra/deepseek-ai/DeepSeek-R1-0528` | 164K | | | | | | $0.50 | $2 |
|
|
39
41
|
| `deepinfra/deepseek-ai/DeepSeek-V3` | 164K | | | | | | $0.32 | $0.89 |
|
|
42
|
+
| `deepinfra/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.24 | $0.90 |
|
|
40
43
|
| `deepinfra/deepseek-ai/DeepSeek-V3.1` | 164K | | | | | | $0.25 | $0.95 |
|
|
41
44
|
| `deepinfra/deepseek-ai/DeepSeek-V3.2` | 164K | | | | | | $0.26 | $0.38 |
|
|
42
45
|
| `deepinfra/deepseek-ai/DeepSeek-V4-Flash` | 1.0M | | | | | | $0.09 | $0.18 |
|
|
@@ -58,6 +61,7 @@ for await (const chunk of stream) {
|
|
|
58
61
|
| `deepinfra/openai/gpt-oss-120b` | 131K | | | | | | $0.04 | $0.17 |
|
|
59
62
|
| `deepinfra/openai/gpt-oss-20b` | 131K | | | | | | $0.03 | $0.14 |
|
|
60
63
|
| `deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507` | 262K | | | | | | $0.09 | $0.55 |
|
|
64
|
+
| `deepinfra/Qwen/Qwen3-30B-A3B` | 41K | | | | | | $0.12 | $0.50 |
|
|
61
65
|
| `deepinfra/Qwen/Qwen3-32B` | 41K | | | | | | $0.08 | $0.28 |
|
|
62
66
|
| `deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo` | 262K | | | | | | $0.30 | $1 |
|
|
63
67
|
| `deepinfra/Qwen/Qwen3-Max` | 256K | | | | | | $1 | $6 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Eden AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 220 Eden AI models through Mastra's model router. Authentication is handled automatically using the `EDENAI_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Eden AI documentation](https://docs.edenai.co).
|
|
8
8
|
|
|
@@ -17,7 +17,7 @@ const agent = new Agent({
|
|
|
17
17
|
id: "my-agent",
|
|
18
18
|
name: "My Agent",
|
|
19
19
|
instructions: "You are a helpful assistant",
|
|
20
|
-
model: "edenai/
|
|
20
|
+
model: "edenai/amazon/moonshot.kimi-k2-thinking"
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
// Generate a response
|
|
@@ -34,24 +34,228 @@ for await (const chunk of stream) {
|
|
|
34
34
|
|
|
35
35
|
## Models
|
|
36
36
|
|
|
37
|
-
| Model
|
|
38
|
-
|
|
|
39
|
-
| `edenai/
|
|
40
|
-
| `edenai/
|
|
41
|
-
| `edenai/
|
|
42
|
-
| `edenai/
|
|
43
|
-
| `edenai/
|
|
44
|
-
| `edenai/
|
|
45
|
-
| `edenai/
|
|
46
|
-
| `edenai/
|
|
47
|
-
| `edenai/
|
|
48
|
-
| `edenai/
|
|
49
|
-
| `edenai/
|
|
50
|
-
| `edenai/
|
|
51
|
-
| `edenai/
|
|
52
|
-
| `edenai/
|
|
53
|
-
| `edenai/
|
|
54
|
-
| `edenai/
|
|
37
|
+
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
|
+
| ---------------------------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
|
+
| `edenai/amazon/moonshot.kimi-k2-thinking` | 128K | | | | | | $0.60 | $3 |
|
|
40
|
+
| `edenai/amazon/moonshotai.kimi-k2.5` | 262K | | | | | | $0.60 | $3 |
|
|
41
|
+
| `edenai/amazon/nvidia.nemotron-nano-9b-v2` | 128K | | | | | | $0.06 | $0.23 |
|
|
42
|
+
| `edenai/amazon/nvidia.nemotron-nano-9b-v2@us` | 128K | | | | | | $0.06 | $0.23 |
|
|
43
|
+
| `edenai/amazon/zai.glm-4.7-flash` | 200K | | | | | | $0.07 | $0.40 |
|
|
44
|
+
| `edenai/amazon/zai.glm-4.7-flash@us` | 200K | | | | | | $0.07 | $0.40 |
|
|
45
|
+
| `edenai/anthropic/claude-fable-5` | 1.0M | | | | | | $10 | $50 |
|
|
46
|
+
| `edenai/anthropic/claude-fable-latest` | 1.0M | | | | | | $10 | $50 |
|
|
47
|
+
| `edenai/anthropic/claude-opus-4-5` | 200K | | | | | | $5 | $25 |
|
|
48
|
+
| `edenai/anthropic/claude-opus-4-5-20251101` | 200K | | | | | | $5 | $25 |
|
|
49
|
+
| `edenai/anthropic/claude-opus-4-6` | 1.0M | | | | | | $5 | $25 |
|
|
50
|
+
| `edenai/anthropic/claude-opus-4-7` | 1.0M | | | | | | $5 | $25 |
|
|
51
|
+
| `edenai/anthropic/claude-opus-4-8` | 1.0M | | | | | | $5 | $25 |
|
|
52
|
+
| `edenai/anthropic/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
|
|
53
|
+
| `edenai/anthropic/claude-opus-latest` | 1.0M | | | | | | $5 | $25 |
|
|
54
|
+
| `edenai/anthropic/claude-sonnet-4-6` | 1.0M | | | | | | $3 | $15 |
|
|
55
|
+
| `edenai/anthropic/claude-sonnet-5` | 1.0M | | | | | | $2 | $10 |
|
|
56
|
+
| `edenai/anthropic/claude-sonnet-latest` | 1.0M | | | | | | $2 | $10 |
|
|
57
|
+
| `edenai/azure/gpt-5.1-codex` | 272K | | | | | | $1 | $10 |
|
|
58
|
+
| `edenai/azure/gpt-5.1-codex-max` | 272K | | | | | | $1 | $10 |
|
|
59
|
+
| `edenai/azure/gpt-5.1-codex-mini` | 272K | | | | | | $0.25 | $2 |
|
|
60
|
+
| `edenai/azure/gpt-5.2-codex` | 272K | | | | | | $2 | $14 |
|
|
61
|
+
| `edenai/cerebras/gpt-oss-120b` | 131K | | | | | | $0.35 | $0.75 |
|
|
62
|
+
| `edenai/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it` | 128K | | | | | | $0.35 | $0.56 |
|
|
63
|
+
| `edenai/cloudflare/@cf/meta/llama-guard-3-8b` | 131K | | | | | | $0.48 | $0.03 |
|
|
64
|
+
| `edenai/cloudflare/@cf/openai/gpt-oss-120b` | 128K | | | | | | $0.35 | $0.75 |
|
|
65
|
+
| `edenai/cloudflare/@cf/openai/gpt-oss-20b` | 128K | | | | | | $0.20 | $0.30 |
|
|
66
|
+
| `edenai/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct` | 33K | | | | | | $0.66 | $1 |
|
|
67
|
+
| `edenai/cloudflare/@cf/zai-org/glm-4.7-flash` | 131K | | | | | | $0.06 | $0.40 |
|
|
68
|
+
| `edenai/cohere/command-a-03-2025` | 288K | | | | | | $3 | $10 |
|
|
69
|
+
| `edenai/cohere/command-r-08-2024` | 128K | | | | | | $0.15 | $0.60 |
|
|
70
|
+
| `edenai/cohere/command-r-plus-08-2024` | 128K | | | | | | $3 | $10 |
|
|
71
|
+
| `edenai/cohere/command-r7b-12-2024` | 132K | | | | | | $0.04 | $0.15 |
|
|
72
|
+
| `edenai/databricks/databricks-gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
73
|
+
| `edenai/databricks/databricks-gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
74
|
+
| `edenai/deepinfra/ByteDance/Seed-2.0-code` | 256K | | | | | | $0.50 | $3 |
|
|
75
|
+
| `edenai/deepinfra/ByteDance/Seed-2.0-mini` | 256K | | | | | | $0.10 | $0.40 |
|
|
76
|
+
| `edenai/deepinfra/deepseek-ai/DeepSeek-R1` | 164K | | | | | | $0.70 | $2 |
|
|
77
|
+
| `edenai/deepinfra/deepseek-ai/DeepSeek-V3` | 164K | | | | | | $0.32 | $0.89 |
|
|
78
|
+
| `edenai/deepinfra/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.24 | $0.90 |
|
|
79
|
+
| `edenai/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.08 | $0.18 |
|
|
80
|
+
| `edenai/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct` | 131K | | | | | | $0.34 | $0.34 |
|
|
81
|
+
| `edenai/deepinfra/meta-llama/Llama-3.3-70B-Instruct` | 131K | | | | | | $0.10 | $0.32 |
|
|
82
|
+
| `edenai/deepinfra/meta-llama/Llama-Guard-3-8B` | 131K | | | | | | $0.06 | $0.06 |
|
|
83
|
+
| `edenai/deepinfra/meta-models/Muse-Glimmer-30B` | 131K | | | | | | $0.30 | $1 |
|
|
84
|
+
| `edenai/deepinfra/moonshotai/Kimi-K2.5` | 262K | | | | | | $0.45 | $2 |
|
|
85
|
+
| `edenai/deepinfra/nemotron-3-ultra-550b-a55b` | 262K | | | | | | $0.50 | $2 |
|
|
86
|
+
| `edenai/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct` | 131K | | | | | | $0.60 | $0.60 |
|
|
87
|
+
| `edenai/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B` | 262K | | | | | | $0.05 | $0.20 |
|
|
88
|
+
| `edenai/deepinfra/openai/gpt-oss-120b` | 131K | | | | | | $0.04 | $0.17 |
|
|
89
|
+
| `edenai/deepinfra/openai/gpt-oss-20b` | 131K | | | | | | $0.03 | $0.14 |
|
|
90
|
+
| `edenai/deepinfra/stepfun-ai/Step-3.5-Flash` | 262K | | | | | | $0.09 | $0.30 |
|
|
91
|
+
| `edenai/deepinfra/stepfun-ai/Step-3.7-Flash` | 262K | | | | | | $0.20 | $1 |
|
|
92
|
+
| `edenai/deepinfra/tencent/Hy3` | 262K | | | | | | $0.14 | $0.58 |
|
|
93
|
+
| `edenai/deepinfra/thinkingmachines/Inkling` | 524K | | | | | | $0.95 | $4 |
|
|
94
|
+
| `edenai/deepinfra/thinkingmachines/Inkling-Small` | 524K | | | | | | $0.45 | $1 |
|
|
95
|
+
| `edenai/deepinfra/zai-org/GLM-4.7-Flash` | 203K | | | | | | $0.06 | $0.40 |
|
|
96
|
+
| `edenai/deepseek/deepseek-chat` | 131K | | | | | | $0.28 | $0.42 |
|
|
97
|
+
| `edenai/deepseek/deepseek-reasoner` | 131K | | | | | | $0.28 | $0.42 |
|
|
98
|
+
| `edenai/deepseek/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
99
|
+
| `edenai/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $0.43 | $0.87 |
|
|
100
|
+
| `edenai/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
101
|
+
| `edenai/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
102
|
+
| `edenai/fireworks_ai/accounts/fireworks/models/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
103
|
+
| `edenai/fireworks_ai/accounts/fireworks/models/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
104
|
+
| `edenai/fireworks_ai/accounts/fireworks/models/muse-glimmer-30b` | 131K | | | | | | $0.35 | $2 |
|
|
105
|
+
| `edenai/fireworks_ai/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
106
|
+
| `edenai/fireworks_ai/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
107
|
+
| `edenai/flexai/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.08 | $0.18 |
|
|
108
|
+
| `edenai/flexai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.08 | $0.18 |
|
|
109
|
+
| `edenai/flexai/gpt-oss-120b` | 131K | | | | | | $0.04 | $0.10 |
|
|
110
|
+
| `edenai/flexai/gpt-oss-20b` | 131K | | | | | | $0.03 | $0.13 |
|
|
111
|
+
| `edenai/flexai/Muse-Glimmer-30B` | 131K | | | | | | $0.30 | $1 |
|
|
112
|
+
| `edenai/flexai/Nemotron-3-Super-120B-A12B` | 262K | | | | | | $0.09 | $0.40 |
|
|
113
|
+
| `edenai/google/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $3 |
|
|
114
|
+
| `edenai/google/gemini-3-flash-preview` | 1.0M | | | | | | $0.50 | $3 |
|
|
115
|
+
| `edenai/google/gemini-3-pro-image` | 66K | | | | | | $2 | $12 |
|
|
116
|
+
| `edenai/google/gemini-3-pro-image-preview` | 66K | | | | | | $2 | $12 |
|
|
117
|
+
| `edenai/google/gemini-3.1-flash-image` | 66K | | | | | | $0.50 | $3 |
|
|
118
|
+
| `edenai/google/gemini-3.1-flash-image-preview` | 66K | | | | | | $0.50 | $3 |
|
|
119
|
+
| `edenai/google/gemini-3.1-flash-lite` | 1.0M | | | | | | $0.25 | $2 |
|
|
120
|
+
| `edenai/google/gemini-3.1-flash-lite-image` | 66K | | | | | | $0.25 | $2 |
|
|
121
|
+
| `edenai/google/gemini-3.1-flash-lite-preview` | 1.0M | | | | | | $0.25 | $2 |
|
|
122
|
+
| `edenai/google/gemini-3.1-pro-preview` | 1.0M | | | | | | $2 | $12 |
|
|
123
|
+
| `edenai/google/gemini-3.1-pro-preview-customtools` | 1.0M | | | | | | $2 | $12 |
|
|
124
|
+
| `edenai/google/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
125
|
+
| `edenai/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
126
|
+
| `edenai/google/gemini-3.6-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
127
|
+
| `edenai/google/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
128
|
+
| `edenai/google/gemini-flash-latest` | 1.0M | | | | | | $0.75 | $4 |
|
|
129
|
+
| `edenai/google/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
130
|
+
| `edenai/google/lyria-3-clip-preview` | 1.0M | | | | | | — | — |
|
|
131
|
+
| `edenai/groq/openai/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
132
|
+
| `edenai/groq/openai/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
133
|
+
| `edenai/ionos/meta-llama/Llama-3.3-70B-Instruct` | 128K | | | | | | $0.75 | $0.75 |
|
|
134
|
+
| `edenai/ionos/openai/gpt-oss-120b` | 131K | | | | | | $0.17 | $0.75 |
|
|
135
|
+
| `edenai/minimax/MiniMax-M2` | 205K | | | | | | $0.30 | $1 |
|
|
136
|
+
| `edenai/minimax/MiniMax-M2.1` | 205K | | | | | | $0.30 | $1 |
|
|
137
|
+
| `edenai/minimax/MiniMax-M2.5` | 205K | | | | | | $0.30 | $1 |
|
|
138
|
+
| `edenai/minimax/MiniMax-M2.7` | 205K | | | | | | $0.30 | $1 |
|
|
139
|
+
| `edenai/minimax/MiniMax-M3` | 524K | | | | | | $0.30 | $1 |
|
|
140
|
+
| `edenai/mistral/codestral-latest` | 256K | | | | | | $1 | $3 |
|
|
141
|
+
| `edenai/mistral/devstral-2512` | 262K | | | | | | $0.40 | $2 |
|
|
142
|
+
| `edenai/mistral/devstral-medium-latest` | 262K | | | | | | $0.40 | $2 |
|
|
143
|
+
| `edenai/mistral/magistral-medium-latest` | 131K | | | | | | $2 | $5 |
|
|
144
|
+
| `edenai/mistral/mistral-large-2512` | 262K | | | | | | $0.50 | $2 |
|
|
145
|
+
| `edenai/mistral/mistral-large-latest` | 262K | | | | | | $2 | $6 |
|
|
146
|
+
| `edenai/mistral/mistral-medium-2505` | 131K | | | | | | $0.40 | $2 |
|
|
147
|
+
| `edenai/mistral/mistral-medium-2604` | 262K | | | | | | $2 | $8 |
|
|
148
|
+
| `edenai/mistral/mistral-medium-latest` | 262K | | | | | | $2 | $8 |
|
|
149
|
+
| `edenai/mistral/mistral-small-2603` | 262K | | | | | | $0.15 | $0.60 |
|
|
150
|
+
| `edenai/mistral/mistral-small-latest` | 262K | | | | | | $0.06 | $0.18 |
|
|
151
|
+
| `edenai/moonshot/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
|
|
152
|
+
| `edenai/moonshot/kimi-k2.7-code` | 262K | | | | | | $0.95 | $4 |
|
|
153
|
+
| `edenai/moonshot/kimi-k3` | 1.0M | | | | | | $3 | $15 |
|
|
154
|
+
| `edenai/nebius/meta-llama/Llama-3.3-70B-Instruct` | 131K | | | | | | $0.13 | $0.40 |
|
|
155
|
+
| `edenai/nebius/nvidia/nemotron-3-super-120b-a12b` | 8K | | | | | | $0.30 | $0.90 |
|
|
156
|
+
| `edenai/nebius/nvidia/Nemotron-3-Ultra-550b-a55b` | 8K | | | | | | $1 | $3 |
|
|
157
|
+
| `edenai/nebius/openai/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
158
|
+
| `edenai/openai/gpt-3.5-turbo` | 16K | | | | | | $0.50 | $2 |
|
|
159
|
+
| `edenai/openai/gpt-4` | 8K | | | | | | $30 | $60 |
|
|
160
|
+
| `edenai/openai/gpt-4-turbo` | 128K | | | | | | $10 | $30 |
|
|
161
|
+
| `edenai/openai/gpt-4.1` | 1.0M | | | | | | $2 | $8 |
|
|
162
|
+
| `edenai/openai/gpt-4.1-mini` | 1.0M | | | | | | $0.40 | $2 |
|
|
163
|
+
| `edenai/openai/gpt-4.1-nano` | 1.0M | | | | | | $0.10 | $0.40 |
|
|
164
|
+
| `edenai/openai/gpt-4o` | 128K | | | | | | $3 | $10 |
|
|
165
|
+
| `edenai/openai/gpt-4o-2024-08-06` | 128K | | | | | | $3 | $10 |
|
|
166
|
+
| `edenai/openai/gpt-4o-2024-11-20` | 128K | | | | | | $3 | $10 |
|
|
167
|
+
| `edenai/openai/gpt-4o-mini` | 128K | | | | | | $0.15 | $0.60 |
|
|
168
|
+
| `edenai/openai/gpt-5` | 400K | | | | | | $1 | $10 |
|
|
169
|
+
| `edenai/openai/gpt-5-mini` | 400K | | | | | | $0.25 | $2 |
|
|
170
|
+
| `edenai/openai/gpt-5-nano` | 400K | | | | | | $0.05 | $0.40 |
|
|
171
|
+
| `edenai/openai/gpt-5-pro` | 400K | | | | | | $15 | $120 |
|
|
172
|
+
| `edenai/openai/gpt-5.1` | 400K | | | | | | $1 | $10 |
|
|
173
|
+
| `edenai/openai/gpt-5.2` | 400K | | | | | | $2 | $14 |
|
|
174
|
+
| `edenai/openai/gpt-5.2-pro` | 400K | | | | | | $21 | $168 |
|
|
175
|
+
| `edenai/openai/gpt-5.3-codex` | 400K | | | | | | $2 | $14 |
|
|
176
|
+
| `edenai/openai/gpt-5.4` | 1.1M | | | | | | $3 | $15 |
|
|
177
|
+
| `edenai/openai/gpt-5.4-mini` | 400K | | | | | | $0.75 | $5 |
|
|
178
|
+
| `edenai/openai/gpt-5.4-nano` | 400K | | | | | | $0.20 | $1 |
|
|
179
|
+
| `edenai/openai/gpt-5.4-pro` | 1.1M | | | | | | $30 | $180 |
|
|
180
|
+
| `edenai/openai/gpt-5.5` | 1.1M | | | | | | $5 | $30 |
|
|
181
|
+
| `edenai/openai/gpt-5.5-pro` | 1.1M | | | | | | $30 | $180 |
|
|
182
|
+
| `edenai/openai/gpt-5.6-luna` | 1.1M | | | | | | $0.20 | $1 |
|
|
183
|
+
| `edenai/openai/gpt-5.6-sol` | 1.1M | | | | | | $5 | $30 |
|
|
184
|
+
| `edenai/openai/gpt-5.6-terra` | 1.1M | | | | | | $2 | $12 |
|
|
185
|
+
| `edenai/openai/gpt-latest` | 1.1M | | | | | | $5 | $30 |
|
|
186
|
+
| `edenai/openai/gpt-mini-latest` | 400K | | | | | | $0.75 | $5 |
|
|
187
|
+
| `edenai/openai/gpt-pro-latest` | 1.1M | | | | | | $30 | $180 |
|
|
188
|
+
| `edenai/openai/o1` | 200K | | | | | | $15 | $60 |
|
|
189
|
+
| `edenai/openai/o1-pro` | 200K | | | | | | $150 | $600 |
|
|
190
|
+
| `edenai/openai/o3` | 200K | | | | | | $2 | $8 |
|
|
191
|
+
| `edenai/openai/o3-mini` | 200K | | | | | | $1 | $4 |
|
|
192
|
+
| `edenai/openai/o3-pro` | 200K | | | | | | $20 | $80 |
|
|
193
|
+
| `edenai/openai/o4-mini` | 200K | | | | | | $1 | $4 |
|
|
194
|
+
| `edenai/ovhcloud/gpt-oss-120b` | 131K | | | | | | $0.09 | $0.47 |
|
|
195
|
+
| `edenai/ovhcloud/gpt-oss-20b` | 131K | | | | | | $0.05 | $0.18 |
|
|
196
|
+
| `edenai/perplexityai/sonar` | 127K | | | | | | $1 | $1 |
|
|
197
|
+
| `edenai/perplexityai/sonar-pro` | 200K | | | | | | $3 | $15 |
|
|
198
|
+
| `edenai/perplexityai/sonar-reasoning-pro` | 128K | | | | | | $2 | $8 |
|
|
199
|
+
| `edenai/qwen/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.20 | $0.40 |
|
|
200
|
+
| `edenai/qwen/qwen-max` | 33K | | | | | | $2 | $6 |
|
|
201
|
+
| `edenai/qwen/qwen-vl-max` | 131K | | | | | | $0.80 | $3 |
|
|
202
|
+
| `edenai/qwen/qwen-vl-plus` | 131K | | | | | | $0.21 | $0.63 |
|
|
203
|
+
| `edenai/qwen/qwen3-235b-a22b-instruct-2507` | 131K | | | | | | $0.23 | $0.92 |
|
|
204
|
+
| `edenai/qwen/qwen3-coder-30b-a3b-instruct` | 262K | | | | | | $0.45 | $2 |
|
|
205
|
+
| `edenai/qwen/qwen3-coder-480b-a35b-instruct` | 262K | | | | | | $2 | $8 |
|
|
206
|
+
| `edenai/qwen/qwen3-coder-flash` | 1.0M | | | | | | $0.30 | $2 |
|
|
207
|
+
| `edenai/qwen/qwen3-coder-next` | 262K | | | | | | $0.30 | $2 |
|
|
208
|
+
| `edenai/qwen/qwen3-coder-plus` | 1.0M | | | | | | $1 | $5 |
|
|
209
|
+
| `edenai/qwen/qwen3-max` | 262K | | | | | | $1 | $6 |
|
|
210
|
+
| `edenai/qwen/qwen3-next-80b-a3b-instruct` | 131K | | | | | | $0.15 | $1 |
|
|
211
|
+
| `edenai/qwen/qwen3-next-80b-a3b-thinking` | 131K | | | | | | $0.15 | $1 |
|
|
212
|
+
| `edenai/qwen/qwen3.8-max` | 1.0M | | | | | | $2 | $6 |
|
|
213
|
+
| `edenai/qwen/qwq-plus` | 131K | | | | | | $0.80 | $2 |
|
|
214
|
+
| `edenai/scaleway/deepseek-v4-flash-0731` | 256K | | | | | | $0.46 | $0.92 |
|
|
215
|
+
| `edenai/scaleway/gpt-oss-120b` | 128K | | | | | | $0.17 | $0.69 |
|
|
216
|
+
| `edenai/scaleway/llama-3.3-70b-instruct` | 128K | | | | | | $1 | $1 |
|
|
217
|
+
| `edenai/together_ai/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
218
|
+
| `edenai/together_ai/meta-models/Muse-Glimmer-30B` | 131K | | | | | | $0.35 | $2 |
|
|
219
|
+
| `edenai/together_ai/nvidia/nemotron-3-ultra-550b-a55b` | 512K | | | | | | $0.60 | $4 |
|
|
220
|
+
| `edenai/together_ai/openai/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
221
|
+
| `edenai/together_ai/openai/gpt-oss-20b` | 131K | | | | | | $0.05 | $0.20 |
|
|
222
|
+
| `edenai/together_ai/thinkingmachines/Inkling` | 524K | | | | | | $1 | $4 |
|
|
223
|
+
| `edenai/together_ai/thinkingmachines/Inkling-Small` | 524K | | | | | | $0.50 | $1 |
|
|
224
|
+
| `edenai/vertex/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $3 |
|
|
225
|
+
| `edenai/vertex/gemini-3-flash-preview` | 1.0M | | | | | | $0.50 | $3 |
|
|
226
|
+
| `edenai/vertex/gemini-3-pro-image` | 66K | | | | | | $2 | $12 |
|
|
227
|
+
| `edenai/vertex/gemini-3.1-flash-image` | 131K | | | | | | $0.50 | $3 |
|
|
228
|
+
| `edenai/vertex/gemini-3.1-flash-lite-image` | 66K | | | | | | $0.25 | $2 |
|
|
229
|
+
| `edenai/vertex/gemini-3.1-pro-preview` | 1.0M | | | | | | $2 | $12 |
|
|
230
|
+
| `edenai/vertex/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
231
|
+
| `edenai/vertex/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
232
|
+
| `edenai/vertex/gemini-3.5-flash-lite@eu` | 1.0M | | | | | | $0.30 | $3 |
|
|
233
|
+
| `edenai/vertex/gemini-3.5-flash-lite@us` | 1.0M | | | | | | $0.30 | $3 |
|
|
234
|
+
| `edenai/vertex/gemini-3.5-flash@eu` | 1.0M | | | | | | $2 | $9 |
|
|
235
|
+
| `edenai/vertex/gemini-3.5-flash@us` | 1.0M | | | | | | $2 | $9 |
|
|
236
|
+
| `edenai/vertex/gemini-3.6-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
237
|
+
| `edenai/vertex/gemini-3.6-flash@eu` | 1.0M | | | | | | $0.75 | $4 |
|
|
238
|
+
| `edenai/vertex/gemini-3.6-flash@us` | 1.0M | | | | | | $0.75 | $4 |
|
|
239
|
+
| `edenai/vertex/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
240
|
+
| `edenai/vertex/gemini-3.7-flash@eu` | 1.0M | | | | | | $0.75 | $4 |
|
|
241
|
+
| `edenai/vertex/gemini-3.7-flash@us` | 1.0M | | | | | | $0.75 | $4 |
|
|
242
|
+
| `edenai/vertex/gemini-flash-latest` | 1.0M | | | | | | $0.75 | $4 |
|
|
243
|
+
| `edenai/vertex/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
244
|
+
| `edenai/xai/grok-4.20-0309-non-reasoning` | 1.0M | | | | | | $1 | $3 |
|
|
245
|
+
| `edenai/xai/grok-4.20-0309-reasoning` | 1.0M | | | | | | $1 | $3 |
|
|
246
|
+
| `edenai/xai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
|
|
247
|
+
| `edenai/xai/grok-4.5` | 500K | | | | | | $2 | $6 |
|
|
248
|
+
| `edenai/xai/grok-4.6` | 500K | | | | | | $2 | $6 |
|
|
249
|
+
| `edenai/xai/grok-build-0.1` | 256K | | | | | | $1 | $2 |
|
|
250
|
+
| `edenai/xai/grok-latest` | 500K | | | | | | $2 | $6 |
|
|
251
|
+
| `edenai/zai/glm-4.6` | 203K | | | | | | $0.60 | $2 |
|
|
252
|
+
| `edenai/zai/glm-4.6v` | 131K | | | | | | $0.30 | $0.90 |
|
|
253
|
+
| `edenai/zai/glm-4.7` | 203K | | | | | | $0.60 | $2 |
|
|
254
|
+
| `edenai/zai/glm-5` | 203K | | | | | | $1 | $3 |
|
|
255
|
+
| `edenai/zai/glm-5-turbo` | 203K | | | | | | $1 | $4 |
|
|
256
|
+
| `edenai/zai/glm-5.1` | 203K | | | | | | $1 | $4 |
|
|
257
|
+
| `edenai/zai/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
258
|
+
| `edenai/zai/glm-5v-turbo` | 203K | | | | | | $1 | $4 |
|
|
55
259
|
|
|
56
260
|
## Advanced configuration
|
|
57
261
|
|
|
@@ -63,7 +267,7 @@ const agent = new Agent({
|
|
|
63
267
|
name: "custom-agent",
|
|
64
268
|
model: {
|
|
65
269
|
url: "https://api.edenai.run/v3",
|
|
66
|
-
id: "edenai/
|
|
270
|
+
id: "edenai/amazon/moonshot.kimi-k2-thinking",
|
|
67
271
|
apiKey: process.env.EDENAI_API_KEY,
|
|
68
272
|
headers: {
|
|
69
273
|
"X-Custom-Header": "value"
|
|
@@ -81,8 +285,8 @@ const agent = new Agent({
|
|
|
81
285
|
model: ({ requestContext }) => {
|
|
82
286
|
const useAdvanced = requestContext.task === "complex";
|
|
83
287
|
return useAdvanced
|
|
84
|
-
? "edenai/zai/glm-
|
|
85
|
-
: "edenai/
|
|
288
|
+
? "edenai/zai/glm-5v-turbo"
|
|
289
|
+
: "edenai/amazon/moonshot.kimi-k2-thinking";
|
|
86
290
|
}
|
|
87
291
|
});
|
|
88
292
|
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# EmpirioLabs AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 44 EmpirioLabs AI models through Mastra's model router. Authentication is handled automatically using the `EMPIRIOLABS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [EmpirioLabs AI documentation](https://docs.empiriolabs.ai).
|
|
8
8
|
|
|
@@ -40,6 +40,7 @@ for await (const chunk of stream) {
|
|
|
40
40
|
| `empiriolabs/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
41
41
|
| `empiriolabs/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
42
42
|
| `empiriolabs/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
|
|
43
|
+
| `empiriolabs/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
43
44
|
| `empiriolabs/gemma-4-26b-a4b` | 262K | | | | | | $0.05 | $0.29 |
|
|
44
45
|
| `empiriolabs/glm-4-5-flash` | 200K | | | | | | — | — |
|
|
45
46
|
| `empiriolabs/glm-4-7-flash` | 200K | | | | | | — | — |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Fireworks AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 23 Fireworks AI models through Mastra's model router. Authentication is handled automatically using the `FIREWORKS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Fireworks AI documentation](https://fireworks.ai/docs/).
|
|
8
8
|
|
|
@@ -34,25 +34,31 @@ for await (const chunk of stream) {
|
|
|
34
34
|
|
|
35
35
|
## Models
|
|
36
36
|
|
|
37
|
-
| Model
|
|
38
|
-
|
|
|
39
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash`
|
|
40
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash-0731`
|
|
41
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro`
|
|
42
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
43
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
44
|
-
| `fireworks-ai/accounts/fireworks/models/gpt-oss-
|
|
45
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
46
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
47
|
-
| `fireworks-ai/accounts/fireworks/models/kimi-
|
|
48
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
49
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
50
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
51
|
-
| `fireworks-ai/accounts/fireworks/
|
|
52
|
-
| `fireworks-ai/accounts/fireworks/
|
|
53
|
-
| `fireworks-ai/accounts/fireworks/
|
|
54
|
-
| `fireworks-ai/accounts/fireworks/
|
|
55
|
-
| `fireworks-ai/accounts/fireworks/
|
|
37
|
+
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
|
+
| ----------------------------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
40
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
41
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
|
|
42
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
43
|
+
| `fireworks-ai/accounts/fireworks/models/glm-5p2` | 1.0M | | | | | | $1 | $4 |
|
|
44
|
+
| `fireworks-ai/accounts/fireworks/models/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
45
|
+
| `fireworks-ai/accounts/fireworks/models/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
46
|
+
| `fireworks-ai/accounts/fireworks/models/inkling` | 1.0M | | | | | | $1 | $4 |
|
|
47
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k2p6` | 262K | | | | | | $0.95 | $4 |
|
|
48
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k2p7-code` | 262K | | | | | | $0.95 | $4 |
|
|
49
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k3` | 1.0M | | | | | | $3 | $15 |
|
|
50
|
+
| `fireworks-ai/accounts/fireworks/models/minimax-m2p7` | 197K | | | | | | $0.30 | $1 |
|
|
51
|
+
| `fireworks-ai/accounts/fireworks/models/minimax-m3` | 512K | | | | | | $0.30 | $1 |
|
|
52
|
+
| `fireworks-ai/accounts/fireworks/models/muse-glimmer-30b` | 131K | | | | | | $0.35 | $2 |
|
|
53
|
+
| `fireworks-ai/accounts/fireworks/models/nemotron-3-ultra-nvfp4` | 262K | | | | | | $0.60 | $2 |
|
|
54
|
+
| `fireworks-ai/accounts/fireworks/models/nemotron-lightning-3p5-30b-a3b` | 262K | | | | | | $0.05 | $0.20 |
|
|
55
|
+
| `fireworks-ai/accounts/fireworks/models/qwen3p7-plus` | 262K | | | | | | $0.40 | $2 |
|
|
56
|
+
| `fireworks-ai/accounts/fireworks/models/qwen3p8-max` | 262K | | | | | | $2 | $6 |
|
|
57
|
+
| `fireworks-ai/accounts/fireworks/routers/glm-5p2-fast` | 1.0M | | | | | | $2 | $7 |
|
|
58
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p6-fast` | 262K | | | | | | $2 | $8 |
|
|
59
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p6-turbo` | 262K | | | | | | $2 | $8 |
|
|
60
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p7-code-fast` | 262K | | | | | | $2 | $8 |
|
|
61
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k3-fast` | 1.0M | | | | | | $5 | $23 |
|
|
56
62
|
|
|
57
63
|
## Advanced configuration
|
|
58
64
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Hugging Face
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 65 Hugging Face models through Mastra's model router. Authentication is handled automatically using the `HF_TOKEN` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Hugging Face documentation](https://huggingface.co).
|
|
8
8
|
|
|
@@ -39,13 +39,16 @@ for await (const chunk of stream) {
|
|
|
39
39
|
| `huggingface/deepseek-ai/DeepSeek-R1` | 64K | | | | | | $0.70 | $3 |
|
|
40
40
|
| `huggingface/deepseek-ai/DeepSeek-R1-0528` | 164K | | | | | | $3 | $5 |
|
|
41
41
|
| `huggingface/deepseek-ai/DeepSeek-V3` | 64K | | | | | | $0.40 | $1 |
|
|
42
|
+
| `huggingface/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.27 | $1 |
|
|
42
43
|
| `huggingface/deepseek-ai/DeepSeek-V3.1` | 131K | | | | | | $0.27 | $1 |
|
|
43
44
|
| `huggingface/deepseek-ai/DeepSeek-V3.2` | 164K | | | | | | $0.28 | $0.40 |
|
|
44
45
|
| `huggingface/deepseek-ai/DeepSeek-V4-Flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
45
46
|
| `huggingface/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
46
47
|
| `huggingface/deepseek-ai/DeepSeek-V4-Pro` | 1.0M | | | | | | $0.43 | $0.87 |
|
|
48
|
+
| `huggingface/deepseek-ai/DeepSeek-V4-Pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
47
49
|
| `huggingface/google/gemma-4-26B-A4B-it` | 262K | | | | | | $0.13 | $0.40 |
|
|
48
50
|
| `huggingface/google/gemma-4-31B-it` | 262K | | | | | | $0.14 | $0.40 |
|
|
51
|
+
| `huggingface/meta-llama/Llama-3.1-8B-Instruct` | 131K | | | | | | $0.06 | $0.06 |
|
|
49
52
|
| `huggingface/meta-llama/Llama-3.3-70B-Instruct` | 131K | | | | | | $0.59 | $0.79 |
|
|
50
53
|
| `huggingface/MiniMaxAI/MiniMax-M2` | 205K | | | | | | $0.30 | $1 |
|
|
51
54
|
| `huggingface/MiniMaxAI/MiniMax-M2.1` | 205K | | | | | | $0.30 | $1 |
|
|
@@ -61,9 +64,11 @@ for await (const chunk of stream) {
|
|
|
61
64
|
| `huggingface/moonshotai/Kimi-K3` | 1.0M | | | | | | $3 | $15 |
|
|
62
65
|
| `huggingface/openai/gpt-oss-120b` | 131K | | | | | | $0.25 | $0.69 |
|
|
63
66
|
| `huggingface/openai/gpt-oss-20b` | 131K | | | | | | $0.10 | $0.50 |
|
|
67
|
+
| `huggingface/Qwen/Qwen2.5-Coder-32B-Instruct` | 131K | | | | | | $0.06 | $0.20 |
|
|
64
68
|
| `huggingface/Qwen/Qwen3-235B-A22B` | 41K | | | | | | $0.20 | $0.80 |
|
|
65
69
|
| `huggingface/Qwen/Qwen3-235B-A22B-Instruct-2507` | 262K | | | | | | $0.85 | $3 |
|
|
66
70
|
| `huggingface/Qwen/Qwen3-235B-A22B-Thinking-2507` | 262K | | | | | | $0.30 | $3 |
|
|
71
|
+
| `huggingface/Qwen/Qwen3-30B-A3B` | 41K | | | | | | $0.12 | $0.50 |
|
|
67
72
|
| `huggingface/Qwen/Qwen3-32B` | 131K | | | | | | $0.29 | $0.59 |
|
|
68
73
|
| `huggingface/Qwen/Qwen3-Coder-30B-A3B-Instruct` | 262K | | | | | | $0.07 | $0.26 |
|
|
69
74
|
| `huggingface/Qwen/Qwen3-Coder-480B-A35B-Instruct` | 262K | | | | | | $2 | $2 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Charm Hyper
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 25 Charm Hyper models through Mastra's model router. Authentication is handled automatically using the `HYPER_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Charm Hyper documentation](https://hyper.charm.land).
|
|
8
8
|
|
|
@@ -37,19 +37,20 @@ for await (const chunk of stream) {
|
|
|
37
37
|
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
38
|
| ---------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
39
|
| `hyper/deepseek-v4-flash` | 1.0M | | | | | | $0.20 | $0.40 |
|
|
40
|
-
| `hyper/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.
|
|
40
|
+
| `hyper/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.20 | $0.40 |
|
|
41
41
|
| `hyper/deepseek-v4-pro` | 1.0M | | | | | | $2 | $5 |
|
|
42
|
-
| `hyper/
|
|
42
|
+
| `hyper/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
43
|
+
| `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.12 | $0.42 |
|
|
43
44
|
| `hyper/glm-5.1` | 203K | | | | | | $2 | $5 |
|
|
44
45
|
| `hyper/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
45
|
-
| `hyper/gpt-oss-120b` | 131K | | | | | | $0.
|
|
46
|
-
| `hyper/kimi-k2.5` | 262K | | | | | | $0.
|
|
46
|
+
| `hyper/gpt-oss-120b` | 131K | | | | | | $0.18 | $0.71 |
|
|
47
|
+
| `hyper/kimi-k2.5` | 262K | | | | | | $0.56 | $3 |
|
|
47
48
|
| `hyper/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
|
|
48
49
|
| `hyper/kimi-k2.7-code` | 256K | | | | | | $0.95 | $4 |
|
|
49
50
|
| `hyper/kimi-k3` | 1.0M | | | | | | $3 | $16 |
|
|
50
|
-
| `hyper/llama-3.3-70b-instruct` | 128K | | | | | | $0.
|
|
51
|
+
| `hyper/llama-3.3-70b-instruct` | 128K | | | | | | $0.61 | $0.84 |
|
|
51
52
|
| `hyper/llama-4-maverick-17b-128e-instruct-fp8` | 430K | | | | | | $0.27 | $0.90 |
|
|
52
|
-
| `hyper/minimax-m2.7` | 262K | | | | | | $0.
|
|
53
|
+
| `hyper/minimax-m2.7` | 262K | | | | | | $0.43 | $2 |
|
|
53
54
|
| `hyper/minimax-m3` | 512K | | | | | | $0.33 | $1 |
|
|
54
55
|
| `hyper/qwen3-coder-480b-a35b-instruct-int4-mixed-ar` | 106K | | | | | | $0.45 | $2 |
|
|
55
56
|
| `hyper/qwen3-next-80b-a3b-instruct` | 262K | | | | | | $0.12 | $1 |
|