mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 08:30:42 +00:00
* Add Google Gemini TTS provider * Remove committed planning artifact * Explain Google media provider type shape * google: distill Gemini TTS provider * fix: add Google Gemini TTS provider (#67515) (thanks @barronlroth) * fix: honor cfg-backed Google TTS selection (#67515) (thanks @barronlroth) * fix: narrow Google TTS directive aliases (#67515) (thanks @barronlroth) --------- Co-authored-by: Ayaan Zaidi <hi@obviy.us>
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
import { pluginRegistrationContractCases } from "../../test/helpers/plugins/plugin-registration-contract-cases.js";
|
|
import { describePluginRegistrationContract } from "../../test/helpers/plugins/plugin-registration-contract.js";
|
|
|
|
describePluginRegistrationContract({
|
|
...pluginRegistrationContractCases.google,
|
|
speechProviderIds: ["google"],
|
|
videoGenerationProviderIds: ["google"],
|
|
webSearchProviderIds: ["gemini"],
|
|
requireDescribeImages: true,
|
|
requireGenerateImage: true,
|
|
requireGenerateVideo: true,
|
|
});
|