From e8979ac12a14b5b4ad6031de4091a52d7dc564bf Mon Sep 17 00:00:00 2001 From: henrikdukefoss <76407537+henrikdukefoss@users.noreply.github.com> Date: Fri, 17 Jul 2026 07:51:20 +0200 Subject: [PATCH 1/5] feat(standardcompute): add provider --- providers/standardcompute/provider.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 providers/standardcompute/provider.toml diff --git a/providers/standardcompute/provider.toml b/providers/standardcompute/provider.toml new file mode 100644 index 0000000000..439fa3a470 --- /dev/null +++ b/providers/standardcompute/provider.toml @@ -0,0 +1,11 @@ +# Flat-rate unlimited gateway: per-token cost is $0 (subscription pricing, +# $9-$399/mo tiers that differ by execution speed, not usage caps). The single +# "standardcompute" model id routes each request to a suitable frontier model. +# OpenAI-compatible chat completions; tool calls and structured output +# verified 2026-07-17. +# https://standardcompute.com/integrations (accessed 2026-07-17) +name = "Standard Compute" +env = ["STANDARDCOMPUTE_API_KEY"] +npm = "@ai-sdk/openai-compatible" +doc = "https://standardcompute.com/integrations" +api = "https://api.stdcmpt.com/v1" From c93408eea2e57bebf6f9f8e5780c4933b1d69965 Mon Sep 17 00:00:00 2001 From: henrikdukefoss <76407537+henrikdukefoss@users.noreply.github.com> Date: Fri, 17 Jul 2026 07:51:21 +0200 Subject: [PATCH 2/5] feat(standardcompute): add auto-route model --- .../models/standardcompute.toml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 providers/standardcompute/models/standardcompute.toml diff --git a/providers/standardcompute/models/standardcompute.toml b/providers/standardcompute/models/standardcompute.toml new file mode 100644 index 0000000000..9888d347de --- /dev/null +++ b/providers/standardcompute/models/standardcompute.toml @@ -0,0 +1,23 @@ +name = "Standard Compute (auto-route)" +description = "Flat-rate auto-router: one model id that routes each request to a suitable frontier model, unlimited tokens at a fixed monthly price" +family = "auto" +release_date = "2026-03-01" +last_updated = "2026-07-17" +attachment = false +reasoning = false +temperature = true +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.00 +output = 0.00 + +[limit] +context = 128_000 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] From 853a7768dcbaa5a1538f1ae34cf014cd2f8414c0 Mon Sep 17 00:00:00 2001 From: henrikdukefoss <76407537+henrikdukefoss@users.noreply.github.com> Date: Fri, 17 Jul 2026 08:05:43 +0200 Subject: [PATCH 3/5] feat(standardcompute): add currentColor logo --- providers/standardcompute/logo.svg | 85 ++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 providers/standardcompute/logo.svg diff --git a/providers/standardcompute/logo.svg b/providers/standardcompute/logo.svg new file mode 100644 index 0000000000..430e8fcccc --- /dev/null +++ b/providers/standardcompute/logo.svg @@ -0,0 +1,85 @@ + + + + + + + + From 194341ac12278482038245aa7e1a90d2e94d5e08 Mon Sep 17 00:00:00 2001 From: henrikdukefoss <76407537+henrikdukefoss@users.noreply.github.com> Date: Fri, 17 Jul 2026 08:05:45 +0200 Subject: [PATCH 4/5] docs(standardcompute): document placeholder limits and claim provenance --- providers/standardcompute/models/standardcompute.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/providers/standardcompute/models/standardcompute.toml b/providers/standardcompute/models/standardcompute.toml index 9888d347de..5f3c7b6df3 100644 --- a/providers/standardcompute/models/standardcompute.toml +++ b/providers/standardcompute/models/standardcompute.toml @@ -1,3 +1,12 @@ +# tool_call and structured_output verified against the live endpoint +# (https://api.stdcmpt.com/v1/chat/completions) on 2026-07-17. +# release_date reflects the public launch month (March 2026) as stated by the +# operator; the provider does not publish a launch-date page. +# limit.context and limit.output are conservative placeholders (the router +# fans out to frontier backends whose true limits vary per request); chosen +# to match the floor convention used by other auto-router entries. +# attachment/reasoning are set false pending verification, not as claims of +# absence. name = "Standard Compute (auto-route)" description = "Flat-rate auto-router: one model id that routes each request to a suitable frontier model, unlimited tokens at a fixed monthly price" family = "auto" From 8875d7313dcd536c0bc7e400c126b68f77e304ee Mon Sep 17 00:00:00 2001 From: henrikdukefoss <76407537+henrikdukefoss@users.noreply.github.com> Date: Fri, 17 Jul 2026 20:09:12 +0200 Subject: [PATCH 5/5] docs(standardcompute): cite direct pricing page for subscription-based $0 per-token cost --- providers/standardcompute/provider.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/providers/standardcompute/provider.toml b/providers/standardcompute/provider.toml index 439fa3a470..97e80520a2 100644 --- a/providers/standardcompute/provider.toml +++ b/providers/standardcompute/provider.toml @@ -1,9 +1,10 @@ -# Flat-rate unlimited gateway: per-token cost is $0 (subscription pricing, -# $9-$399/mo tiers that differ by execution speed, not usage caps). The single -# "standardcompute" model id routes each request to a suitable frontier model. -# OpenAI-compatible chat completions; tool calls and structured output -# verified 2026-07-17. -# https://standardcompute.com/integrations (accessed 2026-07-17) +# Flat-rate unlimited gateway: per-token cost is $0 because pricing is +# subscription-based — tiers from $9 to $399/mo that differ by execution +# speed, not usage caps. Pricing page: https://standardcompute.com/pricing +# (accessed 2026-07-18). The single "standardcompute" model id routes each +# request to a suitable frontier model. OpenAI-compatible chat completions; +# tool calls and structured output verified against the live endpoint +# 2026-07-17. Setup docs: https://standardcompute.com/integrations name = "Standard Compute" env = ["STANDARDCOMPUTE_API_KEY"] npm = "@ai-sdk/openai-compatible"