Class CompositionPlanRequest
Inherited Members
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class CompositionPlanRequest
Properties
| Edit this page View SourceMusicLengthMs
Optional. The length of the composition plan to generate in milliseconds. Must be between 3000ms and 300000ms. Optional - if not provided, the model will choose a length based on the prompt.
Declaration
[JsonProperty("music_length_ms")]
public int? MusicLengthMs { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Prompt
Required. A simple text prompt to compose a plan from.
Declaration
[JsonProperty("prompt")]
public string Prompt { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SourceCompositionPlan
Optional. An optional composition plan to use as a source for the new composition plan.
Declaration
[JsonProperty("source_composition_plan")]
public CompositionPlan SourceCompositionPlan { get; set; }
Property Value
| Type | Description |
|---|---|
| CompositionPlan |