From ae61736a88e968025cfa6d68d4e2cdcd1e3cf360 Mon Sep 17 00:00:00 2001 From: Simon Iribarren Date: Mon, 1 Jun 2026 22:12:14 +0200 Subject: [PATCH 1/2] feat(providers): add QVAC --- providers/qvac/logo.svg | 6 ++++++ .../qvac/models/embeddinggemma-300m.toml | 21 +++++++++++++++++++ providers/qvac/models/qwen3-0.6b.toml | 21 +++++++++++++++++++ providers/qvac/models/qwen3-1.7b.toml | 21 +++++++++++++++++++ providers/qvac/models/qwen3-4b.toml | 21 +++++++++++++++++++ providers/qvac/provider.toml | 4 ++++ 6 files changed, 94 insertions(+) create mode 100644 providers/qvac/logo.svg create mode 100644 providers/qvac/models/embeddinggemma-300m.toml create mode 100644 providers/qvac/models/qwen3-0.6b.toml create mode 100644 providers/qvac/models/qwen3-1.7b.toml create mode 100644 providers/qvac/models/qwen3-4b.toml create mode 100644 providers/qvac/provider.toml diff --git a/providers/qvac/logo.svg b/providers/qvac/logo.svg new file mode 100644 index 000000000..677737b04 --- /dev/null +++ b/providers/qvac/logo.svg @@ -0,0 +1,6 @@ + + + diff --git a/providers/qvac/models/embeddinggemma-300m.toml b/providers/qvac/models/embeddinggemma-300m.toml new file mode 100644 index 000000000..9930cc5ef --- /dev/null +++ b/providers/qvac/models/embeddinggemma-300m.toml @@ -0,0 +1,21 @@ +name = "EmbeddingGemma 300M" +family = "gemma" +attachment = false +reasoning = false +tool_call = false +temperature = false +open_weights = true +release_date = "2025-09-04" +last_updated = "2025-09-04" + +[cost] +input = 0 +output = 0 + +[limit] +context = 2_048 +output = 768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/qvac/models/qwen3-0.6b.toml b/providers/qvac/models/qwen3-0.6b.toml new file mode 100644 index 000000000..e9f087443 --- /dev/null +++ b/providers/qvac/models/qwen3-0.6b.toml @@ -0,0 +1,21 @@ +name = "Qwen3 0.6B" +family = "qwen" +attachment = false +reasoning = false +tool_call = true +temperature = true +open_weights = true +release_date = "2025-04-29" +last_updated = "2025-04-29" + +[cost] +input = 0 +output = 0 + +[limit] +context = 32_768 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/qvac/models/qwen3-1.7b.toml b/providers/qvac/models/qwen3-1.7b.toml new file mode 100644 index 000000000..707e42fb5 --- /dev/null +++ b/providers/qvac/models/qwen3-1.7b.toml @@ -0,0 +1,21 @@ +name = "Qwen3 1.7B" +family = "qwen" +attachment = false +reasoning = false +tool_call = true +temperature = true +open_weights = true +release_date = "2025-04-29" +last_updated = "2025-04-29" + +[cost] +input = 0 +output = 0 + +[limit] +context = 32_768 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/qvac/models/qwen3-4b.toml b/providers/qvac/models/qwen3-4b.toml new file mode 100644 index 000000000..f4a726f20 --- /dev/null +++ b/providers/qvac/models/qwen3-4b.toml @@ -0,0 +1,21 @@ +name = "Qwen3 4B" +family = "qwen" +attachment = false +reasoning = false +tool_call = true +temperature = true +open_weights = true +release_date = "2025-04-29" +last_updated = "2025-04-29" + +[cost] +input = 0 +output = 0 + +[limit] +context = 32_768 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/qvac/provider.toml b/providers/qvac/provider.toml new file mode 100644 index 000000000..1bb515042 --- /dev/null +++ b/providers/qvac/provider.toml @@ -0,0 +1,4 @@ +name = "QVAC" +env = ["QVAC_API_KEY"] +npm = "@qvac/ai-sdk-provider" +doc = "https://docs.qvac.tether.io/cli/http-server/integration/" From 7996348f7a51c1fb9106b18685b4ed30030f9d7f Mon Sep 17 00:00:00 2001 From: Simon Iribarren Date: Tue, 2 Jun 2026 15:37:47 +0200 Subject: [PATCH 2/2] feat(providers): add gpt-oss-20b to QVAC --- providers/qvac/models/gpt-oss-20b.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 providers/qvac/models/gpt-oss-20b.toml diff --git a/providers/qvac/models/gpt-oss-20b.toml b/providers/qvac/models/gpt-oss-20b.toml new file mode 100644 index 000000000..d2f2beb55 --- /dev/null +++ b/providers/qvac/models/gpt-oss-20b.toml @@ -0,0 +1,21 @@ +name = "GPT-OSS 20B" +family = "gpt-oss" +attachment = false +reasoning = true +tool_call = true +temperature = true +open_weights = true +release_date = "2025-08-05" +last_updated = "2025-08-05" + +[cost] +input = 0 +output = 0 + +[limit] +context = 131_072 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"]