From e9bb874ddc78a9e111a2b049e239a6923978709d Mon Sep 17 00:00:00 2001 From: janeza2 <49841619+janeza2@users.noreply.github.com> Date: Fri, 1 May 2026 18:36:12 +0700 Subject: [PATCH] feat(providerRegistry): add muse-spark-web provider with multiple models and reasoning support (#1843) Integrated into release/v3.7.8 --- open-sse/config/providerRegistry.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/open-sse/config/providerRegistry.ts b/open-sse/config/providerRegistry.ts index 6ac927c6d7..d648bbd473 100644 --- a/open-sse/config/providerRegistry.ts +++ b/open-sse/config/providerRegistry.ts @@ -1197,6 +1197,29 @@ export const REGISTRY: Record = { ], }, + "muse-spark-web": { + id: "muse-spark-web", + alias: "ms-web", + format: "openai", + executor: "muse-spark-web", + baseUrl: "https://www.meta.ai/api/graphql", + authType: "apikey", + authHeader: "cookie", + models: [ + { id: "muse-spark", name: "Muse Spark" }, + { + id: "muse-spark-thinking", + name: "Muse Spark Thinking", + supportsReasoning: true, + }, + { + id: "muse-spark-contemplating", + name: "Muse Spark Contemplating", + supportsReasoning: true, + }, + ], + }, + together: { id: "together", alias: "together",