Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Available providers:
|----------|-----------|
| `client.images` | `nano-banana` (default), `midjourney`, `flux`, `seedream` |
| `client.video` | `sora` (default), `luma`, `veo`, `kling`, `hailuo`, `seedance`, `wan`, `pika`, `pixverse` |
| `client.audio` | `suno` (default), `producer` |
| `client.audio` | `suno` (default), `producer`, `fish` |

## Error Handling

Expand Down
2 changes: 1 addition & 1 deletion python/src/acedatacloud/resources/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from acedatacloud._runtime.tasks import AsyncTaskHandle, TaskHandle

AudioProvider = Literal["suno", "producer"]
AudioProvider = Literal["suno", "producer", "fish"]


class Audio:
Expand Down
2 changes: 1 addition & 1 deletion typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Available providers:
|----------|-----------|
| `client.images` | `nano-banana` (default), `midjourney`, `flux`, `seedream` |
| `client.video` | `sora` (default), `luma`, `veo`, `kling`, `hailuo`, `seedance`, `wan`, `pika`, `pixverse` |
| `client.audio` | `suno` (default), `producer` |
| `client.audio` | `suno` (default), `producer`, `fish` |

## Error Handling

Expand Down
6 changes: 0 additions & 6 deletions typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript/src/resources/audio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { Transport } from '../runtime/transport';
import { TaskHandle } from '../runtime/tasks';

export type AudioProvider = 'suno' | 'producer' | (string & {});
export type AudioProvider = 'suno' | 'producer' | 'fish' | (string & {});

export class Audio {
constructor(private transport: Transport) {}
Expand Down
1 change: 1 addition & 0 deletions typescript/src/resources/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { TaskHandle } from '../runtime/tasks';
const SERVICE_TASK_ENDPOINTS: Record<string, string> = {
suno: '/suno/tasks',
producer: '/producer/tasks',
fish: '/fish/tasks',
'nano-banana': '/nano-banana/tasks',
seedream: '/seedream/tasks',
seedance: '/seedance/tasks',
Expand Down