From 2ddb52096f30413dfadac54df61517dcb741ce45 Mon Sep 17 00:00:00 2001 From: chenxue Date: Sun, 20 Sep 2026 19:14:49 +0800 Subject: [PATCH 1/2] feat(aihubmix): add muse-spark-1.1 --- providers/aihubmix/models/muse-spark-1.1.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 providers/aihubmix/models/muse-spark-1.1.toml diff --git a/providers/aihubmix/models/muse-spark-1.1.toml b/providers/aihubmix/models/muse-spark-1.1.toml new file mode 100644 index 00000000000..c31d00f743f --- /dev/null +++ b/providers/aihubmix/models/muse-spark-1.1.toml @@ -0,0 +1,17 @@ +# Sources (accessed 2026-09-20): +# https://aihubmix.com/api/v1/models?type=llm (USD per million tokens) +# https://dev.meta.ai/docs/models/ +# Effort: reasoning_effort = minimal|low|medium|high|xhigh on /v1/chat/completions. +# https://docs.aihubmix.com/cn/api/unified-inference +base_model = "meta/muse-spark-1.1" + +[[reasoning_options]] +type = "effort" +values = ["minimal", "low", "medium", "high", "xhigh"] + +[cost] +input = 1.375 +output = 4.675 + +[modalities] +input = ["text", "image", "video", "audio", "pdf"] From 61a63cd94609315f8213103ff90feed72db7cdef Mon Sep 17 00:00:00 2001 From: chenxue Date: Sun, 20 Sep 2026 19:18:07 +0800 Subject: [PATCH 2/2] docs(aihubmix): cite Muse Spark 1.1 audio input declaration --- providers/aihubmix/models/muse-spark-1.1.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/providers/aihubmix/models/muse-spark-1.1.toml b/providers/aihubmix/models/muse-spark-1.1.toml index c31d00f743f..f0c00f709bf 100644 --- a/providers/aihubmix/models/muse-spark-1.1.toml +++ b/providers/aihubmix/models/muse-spark-1.1.toml @@ -1,4 +1,7 @@ # Sources (accessed 2026-09-20): +# AIHubMix catalog row model_id=muse-spark-1.1 declares +# input_modalities="text,image,video,audio,pdf". Audio is a host-catalog override +# relative to the lab entry; this is a catalog declaration, not an inference test. # https://aihubmix.com/api/v1/models?type=llm (USD per million tokens) # https://dev.meta.ai/docs/models/ # Effort: reasoning_effort = minimal|low|medium|high|xhigh on /v1/chat/completions.