-
Notifications
You must be signed in to change notification settings - Fork 0
/
steamship.json
79 lines (79 loc) · 2.28 KB
/
steamship.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"type": "plugin",
"handle": "dall-e",
"version": "0.0.1-rc.18",
"description": "",
"author": "dave",
"entrypoint": "Unused",
"public": true,
"plugin": {
"isTrainable": false,
"transport": "jsonOverHttp",
"type": "generator",
"streaming": true
},
"build_config": {
"ignore": [
"tests",
"examples"
]
},
"configTemplate": {
"openai_api_key": {
"type": "string",
"description": "An openAI API key to use. If left default, will use Steamship's API key.",
"default": ""
},
"model": {
"type": "string",
"description": "Model to use for image generation. Must be one of: ['dall-e-2', 'dall-e-3']. Not available for runtime override.",
"default": "dall-e-2"
},
"n": {
"type": "number",
"description": "Default number of images to generate for each prompt.",
"default": 1
},
"size": {
"type": "string",
"description": "Size of the output images. Must be one of:['1024x1024', '512x512', '256x256', '1792x1024', '1024x1792']. Not available for runtime override.",
"default": "1024x1024"
},
"max_retries": {
"type": "number",
"description": "Maximum number of retries to make when generating.",
"default": 8
},
"request_timeout": {
"type": "number",
"description": "Timeout for requests to OpenAI completion API. Default is 600 seconds.",
"default": 600
},
"quality": {
"type": "string",
"description": "The quality of the image that will be generated. Must be one of: ['standard', 'hd'].'hd' creates images with finer details and greater consistency across the image. This param is only supported for `dall-e-3`.",
"default": "standard"
},
"style": {
"type": "string",
"description": "The style of the generated images. Must be one of: ['vivid', 'natural']. Vivid causes the model to lean towards generating hyper-real and dramatic images. Natural causes the model to produce more natural, less hyper-real looking images. This param is only supported for `dall-e-3`.",
"default": "vivid"
}
},
"steamshipRegistry": {
"tagline": "",
"tagline2": null,
"usefulFor": null,
"videoUrl": null,
"githubUrl": null,
"demoUrl": null,
"blogUrl": null,
"jupyterUrl": null,
"authorGithub": "",
"authorName": "dave",
"authorEmail": null,
"authorTwitter": null,
"authorUrl": null,
"tags": []
}
}