sc_play_synth
Generate synthesized sounds using natural language descriptions. Describe the sound you want to create, such as "bell at C5" or "deep bass tone for 2 seconds," and the tool produces the corresponding audio output.
Instructions
Play a synthesized sound based on a natural language description. This is the primary tool for sound synthesis. Examples: "play a bell sound at C4", "play a low bass tone for 2 seconds", "play a plucked string sound"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Natural language description of the sound to create (e.g., "bell at C5", "deep bass", "short snare") |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Natural language description of the sound to create (e.g., \"bell at C5\", \"deep bass\", \"short snare\")",
"type": "string"
}
},
"required": [
"description"
],
"type": "object"
}