From 7deb00a3333a45fbd724f9498b2c62e0062ce14c Mon Sep 17 00:00:00 2001 From: Alex-wuhu Date: Wed, 4 Feb 2026 16:56:28 +0800 Subject: [PATCH] feat: add deepseek OCR model configuration and Qwen3 Coder Next model configuration --- .../models/deepseek/deepseek-ocr-2.toml | 19 ++++++++++++++++ .../models/qwen/qwen3-coder-next.toml | 22 +++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 providers/novita-ai/models/deepseek/deepseek-ocr-2.toml create mode 100644 providers/novita-ai/models/qwen/qwen3-coder-next.toml diff --git a/providers/novita-ai/models/deepseek/deepseek-ocr-2.toml b/providers/novita-ai/models/deepseek/deepseek-ocr-2.toml new file mode 100644 index 000000000..5b926151f --- /dev/null +++ b/providers/novita-ai/models/deepseek/deepseek-ocr-2.toml @@ -0,0 +1,19 @@ +name = "deepseek/deepseek-ocr-2" +release_date = "2026-01-27" +last_updated = "2026-01-27" +attachment = true +reasoning = false +tool_call = false +open_weights = true + +[cost] +input = 0.03 +output = 0.03 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/novita-ai/models/qwen/qwen3-coder-next.toml b/providers/novita-ai/models/qwen/qwen3-coder-next.toml new file mode 100644 index 000000000..85afd72f6 --- /dev/null +++ b/providers/novita-ai/models/qwen/qwen3-coder-next.toml @@ -0,0 +1,22 @@ +name = "Qwen3 Coder Next" +family = "qwen" +release_date = "2026-02-03" +last_updated = "2026-02-03" +attachment = false +reasoning = false +temperature = true +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.2 +output = 1.5 + +[limit] +context = 262_144 +output = 65_536 + +[modalities] +input = ["text"] +output = ["text"]