feat: add xai media providers

Add xAI image generation and text-to-speech provider support with docs, live tests, and guarded provider HTTP handling.\n\nThanks @KateWilkins.
This commit is contained in:
KateWilkins
2026-04-23 00:07:39 +01:00
committed by GitHub
parent 386a0884d7
commit f342da5fcc
21 changed files with 1369 additions and 26 deletions

View File

@@ -79,6 +79,11 @@ const PROVIDER_CASES: LiveProviderCase[] = [
pluginName: "Vydra Provider",
providerId: "vydra",
},
{
pluginId: "xai",
pluginName: "xAI Provider",
providerId: "xai",
},
]
.filter((entry) => (providerFilter ? providerFilter.has(entry.providerId) : true))
.toSorted((left, right) => left.providerId.localeCompare(right.providerId));