Class: Clacky::Media::DashScope

Inherits:
Base
  • Object
show all
Defined in:
lib/clacky/media/dashscope.rb

Overview

Alibaba DashScope (Qwen-Image / CosyVoice / HappyHorse) media generation provider.

DashScope is NOT an OpenAI-compatible API. It has its own endpoint, request envelope and response schema for image, speech (TTS), and video generation.

Routing: Generator sends any base_url under *.aliyuncs.com here. We derive the real generation endpoint from the host so users can paste the compatible-mode base_url (…/compatible-mode/v1) they already use for Qwen text models and still get working media generation.

--- Endpoint migration TODO (2026-06) --------------------------------- Aliyun is gradually deprecating the shared dashscope.aliyuncs.com host in favor of the per-workspace MaaS domain https://{WorkspaceId}.cn-beijing.maas.aliyuncs.com (intl: {WorkspaceId}.dashscope-intl.aliyuncs.com). Docs have already moved to the new domain; the old host still works for most models but is expected to be sunset eventually.

Current stance: keep accepting the old shared host as the default (zero-config for users + compatibility with third-party aggregators that don't use aliyuncs.com at all). The new MaaS domain already works today via endpoint_base derivation. Non-real-time TTS (qwen3-tts) does NOT work on the shared host and already emits a hint pointing users at the MaaS domain — see the "url error" branch in generate_speech.

Action when Aliyun announces the sunset of compatible-mode:

1. Flip the default expectation to the WorkspaceId MaaS domain.
2. Add a setup flow / docs explaining how to find WorkspaceId.
3. Keep accepting aggregator base_urls unchanged.

Do NOT pre-emptively migrate before an official sunset notice — it would break zero-config UX and aggregator users for no current gain.

Constant Summary collapse

GENERATION_PATH =
"/api/v1/services/aigc/multimodal-generation/generation"
SPEECH_PATH_COSY =
"/api/v1/services/audio/tts/SpeechSynthesizer"
VIDEO_PATH =
"/api/v1/services/aigc/video-generation/video-synthesis"
TASK_PATH =
"/api/v1/tasks/"
DEFAULT_SPEECH_VOICE_COSY =

Default voice per TTS model family. CosyVoice defaults to longanyang; Qwen3-TTS defaults to Cherry (most common Chinese female voice).

"longanyang"
DEFAULT_SPEECH_VOICE_QWEN =
"Cherry"
ASPECT_TO_SIZE_V2 =

aspect_ratio -> "" (DashScope uses '' not 'x'). qwen-image-2.0 / -plus / -max share these recommended resolutions; the 2.0 series accepts arbitrary sizes within 512512..20482048, the max/plus series only accept a fixed set, so we stick to values that are valid for every family.

{
  "landscape" => "2688*1536", # 16:9
  "square"    => "2048*2048", # 1:1
  "portrait"  => "1536*2688"  # 9:16
}.freeze
ASPECT_TO_SIZE_MAX_PLUS =
{
  "landscape" => "1664*928",  # 16:9
  "square"    => "1328*1328", # 1:1
  "portrait"  => "928*1664"   # 9:16
}.freeze
DEFAULT_ASPECT =
"landscape"
PROVIDER_ID =
"qwen"

Instance Method Summary collapse

Methods inherited from Base

#generate_transcription, #initialize, #understand_video

Constructor Details

This class inherits a constructor from Clacky::Media::Base

Instance Method Details

#generate_image(prompt:, aspect_ratio: DEFAULT_ASPECT, output_dir: nil, n: 1, **_kwargs) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/clacky/media/dashscope.rb', line 73

def generate_image(prompt:, aspect_ratio: DEFAULT_ASPECT, output_dir: nil, n: 1, **_kwargs)
  aspect = size_table.key?(aspect_ratio) ? aspect_ratio : DEFAULT_ASPECT
  size   = size_table[aspect]

  if prompt.to_s.strip.empty?
    return error_response(
      error: "Prompt is required and must be a non-empty string",
      error_type: "invalid_argument",
      provider: PROVIDER_ID,
      aspect_ratio: aspect
    )
  end

  if @api_key.to_s.empty?
    return error_response(
      error: "api_key not configured for image model '#{@model}'",
      error_type: "auth_required",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  payload = {
    model: @model,
    input: {
      messages: [
        { role: "user", content: [{ text: prompt }] }
      ]
    },
    parameters: {
      size: size,
      n: n,
      prompt_extend: true,
      watermark: false
    }
  }

  begin
    response = connection.post(GENERATION_PATH) do |req|
      req.headers["Content-Type"]  = "application/json"
      req.headers["Authorization"] = "Bearer #{@api_key}"
      req.body = JSON.generate(payload)
    end
  rescue Faraday::Error => e
    return error_response(
      error: "HTTP request failed: #{e.message}",
      error_type: "network_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  body = parse_json(response.body)
  unless body.is_a?(Hash)
    return error_response(
      error: "Invalid JSON response from upstream",
      error_type: "invalid_response",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  # DashScope reports business failures via top-level code/message,
  # sometimes alongside a non-2xx status, sometimes 200.
  if body["code"] && !body["code"].to_s.empty?
    return error_response(
      error: "Upstream error #{body["code"]}: #{body["message"]}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  unless response.success?
    return error_response(
      error: "Upstream #{response.status}: #{truncate(response.body, 500)}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  image_url = extract_image_url(body)
  if image_url.nil?
    return error_response(
      error: "Upstream returned no image data",
      error_type: "empty_response",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  local_path = save_image_from_url(image_url, output_dir: output_dir || Dir.pwd, prefix: "img")
  if local_path.nil?
    return error_response(
      error: "Failed to download generated image from #{image_url}",
      error_type: "download_failed",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect
    )
  end

  usage = body["usage"]
  success_response(
    image: local_path,
    prompt: prompt,
    aspect_ratio: aspect,
    provider: PROVIDER_ID,
    extra: {
      "size"      => size,
      "usage"     => usage,
      "request_id" => body["request_id"]
    }.compact
  )
end

#generate_speech(input:, voice: nil, output_dir: nil, language_type: nil, **_kwargs) ⇒ Hash

Synthesizes speech (TTS) using Alibaba CosyVoice models (e.g. cosyvoice-v3-flash). This is a synchronous call.

Parameters:

  • input (String)

    the text to synthesize

  • voice (String, nil) (defaults to: nil)

    the voice name; defaults to "longanyang" for CosyVoice or "Cherry" for Qwen3-TTS

  • output_dir (String, nil) (defaults to: nil)

    the directory to save the output audio

  • language_type (String, nil) (defaults to: nil)

    language hint for Qwen3-TTS (default "Chinese"); ignored by CosyVoice

Returns:

  • (Hash)

    audio_success_response or audio_error_response



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/clacky/media/dashscope.rb', line 204

def generate_speech(input:, voice: nil, output_dir: nil, language_type: nil, **_kwargs)
  if input.to_s.strip.empty?
    return audio_error_response(
      error: "Input text is required and must be a non-empty string",
      error_type: "invalid_argument",
      provider: PROVIDER_ID,
      voice: voice.to_s
    )
  end

  if @api_key.to_s.empty?
    return audio_error_response(
      error: "api_key not configured for audio model '#{@model}'",
      error_type: "auth_required",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  # Pick endpoint and payload shape based on model family. CosyVoice
  # uses the dedicated TTS endpoint and accepts format/sample_rate;
  # Qwen3-TTS is a multimodal-generation model and expects
  # language_type instead.
  endpoint     = speech_endpoint
  chosen_voice = voice || default_speech_voice
  payload      = speech_payload(input: input, voice: chosen_voice, language_type: language_type)

  begin
    response = connection.post(endpoint) do |req|
      req.headers["Content-Type"]  = "application/json"
      req.headers["Authorization"] = "Bearer #{@api_key}"
      req.body = JSON.generate(payload)
    end
  rescue Faraday::Error => e
    return audio_error_response(
      error: "HTTP request failed: #{e.message}",
      error_type: "network_error",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  body = parse_json(response.body)
  unless body.is_a?(Hash)
    return audio_error_response(
      error: "Invalid JSON response from upstream",
      error_type: "invalid_response",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  # Inspect any business level errors from DashScope
  if body["code"] && !body["code"].to_s.empty?
    err_msg = body["message"].to_s
    if err_msg.include?("url error") && @base_url.to_s.include?("dashscope.aliyuncs.com")
      err_msg += " (Note: Alibaba Model Studio non-real-time TTS does not support the public shared endpoint. " \
                 "Set the model's Base URL to your dedicated MaaS domain, e.g. " \
                 "https://{WorkspaceId}.cn-beijing.maas.aliyuncs.com)"
    end
    return audio_error_response(
      error: "Upstream error #{body["code"]}: #{err_msg}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  unless response.success?
    return audio_error_response(
      error: "Upstream #{response.status}: #{truncate(response.body, 500)}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  audio_url = body.dig("output", "audio", "url")
  if audio_url.nil? || audio_url.empty?
    return audio_error_response(
      error: "Upstream returned no audio data",
      error_type: "empty_response",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  # Download the audio file from OSS and save it locally in the target output directory
  local_path = save_image_from_url(audio_url, output_dir: output_dir || Dir.pwd, prefix: "tts", extension: "wav")
  if local_path.nil?
    return audio_error_response(
      error: "Failed to download generated audio from #{audio_url}",
      error_type: "download_failed",
      provider: PROVIDER_ID,
      input: input,
      voice: voice.to_s
    )
  end

  audio_success_response(
    audio: local_path,
    input: input,
    voice: chosen_voice,
    provider: PROVIDER_ID,
    extra: {
      "request_id" => body["request_id"]
    }.compact
  )
end

#generate_video(prompt:, aspect_ratio: "landscape", duration_seconds: nil, output_dir: nil, **_kwargs) ⇒ Hash

Generates a video using Alibaba HappyHorse or Wanx models. This is a mandatory asynchronous API. We submit the task, and poll the task status until it succeeds, fails, or times out.

Parameters:

  • prompt (String)

    the video prompt

  • aspect_ratio (String) (defaults to: "landscape")

    "landscape", "portrait", or "square"

  • duration_seconds (Integer, nil) (defaults to: nil)

    duration in seconds

  • output_dir (String, nil) (defaults to: nil)

    the directory to save the output video

Returns:

  • (Hash)

    video_success_response or video_error_response



329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
# File 'lib/clacky/media/dashscope.rb', line 329

def generate_video(prompt:, aspect_ratio: "landscape", duration_seconds: nil, output_dir: nil, **_kwargs)
  if prompt.to_s.strip.empty?
    return video_error_response(
      error: "Prompt is required and must be a non-empty string",
      error_type: "invalid_argument",
      provider: PROVIDER_ID,
      aspect_ratio: aspect_ratio
    )
  end

  if @api_key.to_s.empty?
    return video_error_response(
      error: "api_key not configured for video model '#{@model}'",
      error_type: "auth_required",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  # Map aspect ratio strings to Alibaba's ratio values (e.g. 16:9).
  ratio = case aspect_ratio
          when "portrait" then "9:16"
          when "square"   then "1:1"
          else "16:9"
          end

  # Construct payload. Ratio and resolution are placed under the "parameters" key.
  payload = {
    model: @model,
    input: {
      prompt: prompt
    },
    parameters: {
      resolution: "720P",
      ratio: ratio
    }
  }
  payload[:parameters][:duration] = duration_seconds if duration_seconds

  begin
    # Submit the task. Alibaba requires 'X-DashScope-Async: enable' header for video synthesis.
    response = connection.post(VIDEO_PATH) do |req|
      req.headers["Content-Type"]      = "application/json"
      req.headers["Authorization"]     = "Bearer #{@api_key}"
      req.headers["X-DashScope-Async"] = "enable"
      req.body = JSON.generate(payload)
    end
  rescue Faraday::Error => e
    return video_error_response(
      error: "HTTP request failed: #{e.message}",
      error_type: "network_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  body = parse_json(response.body)
  unless body.is_a?(Hash)
    return video_error_response(
      error: "Invalid JSON response from upstream",
      error_type: "invalid_response",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  if body["code"] && !body["code"].to_s.empty?
    return video_error_response(
      error: "Upstream error #{body["code"]}: #{body["message"]}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  unless response.success?
    return video_error_response(
      error: "Upstream #{response.status}: #{truncate(response.body, 500)}",
      error_type: "api_error",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  task_id = body.dig("output", "task_id")
  if task_id.nil? || task_id.empty?
    return video_error_response(
      error: "Upstream did not return a task_id",
      error_type: "empty_response",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  # Poll the task status asynchronously. Alibaba limits video tasks, so we check
  # status at interval blocks until completion or timeout.
  max_duration = 300
  interval     = 5
  elapsed      = 0
  video_url    = nil
  polling_err  = nil

  while elapsed < max_duration
    begin
      task_resp = connection.get("#{TASK_PATH}#{task_id}") do |req|
        req.headers["Authorization"] = "Bearer #{@api_key}"
      end
    rescue Faraday::Error => e
      polling_err = "Polling request failed: #{e.message}"
      break
    end

    task_body = parse_json(task_resp.body)
    unless task_body.is_a?(Hash)
      polling_err = "Invalid polling response JSON"
      break
    end

    task_output = task_body["output"] || {}
    status = task_output["task_status"]

    if status == "SUCCEEDED"
      video_url = task_output["video_url"]
      break
    elsif status == "FAILED"
      polling_err = "Task failed: #{task_output["message"] || 'Unknown error'}"
      break
    elsif status == "CANCELED"
      polling_err = "Task was canceled"
      break
    end

    sleep interval
    elapsed += interval
  end

  if video_url.nil?
    return video_error_response(
      error: polling_err || "Polling timed out after #{max_duration} seconds",
      error_type: "polling_failed",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  # Download the final MP4 video file and save it locally
  local_path = save_image_from_url(video_url, output_dir: output_dir || Dir.pwd, prefix: "vid", extension: "mp4")
  if local_path.nil?
    return video_error_response(
      error: "Failed to download generated video from #{video_url}",
      error_type: "download_failed",
      provider: PROVIDER_ID,
      prompt: prompt,
      aspect_ratio: aspect_ratio
    )
  end

  video_success_response(
    video: local_path,
    prompt: prompt,
    aspect_ratio: aspect_ratio,
    provider: PROVIDER_ID,
    extra: {
      "request_id" => body["request_id"]
    }.compact
  )
end