ericguizzo
/
reckon
Generate sound dreams
Run ericguizzo/reckon with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
memories |
string
|
all
|
Type of sound memories that can occur in the dream (list of comma-divided items). Options: all, africanPercs, ambient1, buchla, buchla2, classical, classical2, guitarAcoustic, guitarBaroque, jazz, organ, percsWar, percussions, pianoChill, pianoDreamy, pianoSmooth, airport, birdsStreet, forest, library, mixed, office, rain, sea, train, wind
|
dream_length |
number
|
1.0
Min: 0.2 Max: 60.0 |
Approximate length of the soundfile to generate (in minutes)
|
density |
number
|
0.5
Max: 1.0 |
Increase the amount of simultaneous sounds. Higher values for fuller outputs [0-1 range]
|
diversity |
number
|
0.7
Max: 1.0 |
Chance to have different types of sound memories. Higher values for more variegate outputs [0-1 range]
|
output_type |
string
(enum)
|
mp3
Options: wav, mp3 |
Sound file output format
|
{
"type": "object",
"properties": {
"density": {
"type": "number",
"default": 0.5,
"maximum": 1.0,
"minimum": 0.0,
"x-order": 2,
"description": "Increase the amount of simultaneous sounds. Higher values for fuller outputs [0-1 range]"
},
"memories": {
"type": "string",
"default": "all",
"x-order": 0,
"description": "Type of sound memories that can occur in the dream (list of comma-divided items). Options: all, africanPercs, ambient1, buchla, buchla2, classical, classical2, guitarAcoustic, guitarBaroque, jazz, organ, percsWar, percussions, pianoChill, pianoDreamy, pianoSmooth, airport, birdsStreet, forest, library, mixed, office, rain, sea, train, wind"
},
"diversity": {
"type": "number",
"default": 0.7,
"maximum": 1.0,
"minimum": 0.0,
"x-order": 3,
"description": "Chance to have different types of sound memories. Higher values for more variegate outputs [0-1 range]"
},
"output_type": {
"enum": [
"wav",
"mp3"
],
"type": "string",
"default": "mp3",
"x-order": 4,
"description": "Sound file output format"
},
"dream_length": {
"type": "number",
"default": 1.0,
"maximum": 60.0,
"minimum": 0.2,
"x-order": 1,
"description": "Approximate length of the soundfile to generate (in minutes)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"format": "uri",
"x-order": 0
},
"text": {
"type": "string",
"x-order": 1
}
}
},
"x-cog-array-type": "iterator"
}