forked from cyberlesterr/paper-collage-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproviders.json
More file actions
52 lines (52 loc) · 1.76 KB
/
Copy pathproviders.json
File metadata and controls
52 lines (52 loc) · 1.76 KB
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
{
"$schema": "./schemas/providers.schema.json",
"schemaVersion": 1,
"capabilities": {
"text": {
"defaultProvider": "host-text",
"providers": {
"host-text": {
"label": "Host language model",
"adapter": "host",
"tool": "codex-host-model",
"toolHint": "Use the current Codex host model for briefs, scripts, prompts, and storyboard text."
},
"manual-text": {
"label": "Imported text",
"adapter": "manual",
"toolHint": "Place an authored or externally generated text file at the request output path, then register it with provider:record."
}
}
},
"image": {
"defaultProvider": "host-image",
"providers": {
"host-image": {
"label": "Host image generation",
"adapter": "host",
"toolHint": "Use an installed image-generation skill or tool, then register the resulting local file with provider:record."
},
"manual-image": {
"label": "Imported image",
"adapter": "manual",
"toolHint": "Place an authorized image at the request output path, then register it with provider:record."
}
}
},
"voice": {
"defaultProvider": "host-voice",
"providers": {
"host-voice": {
"label": "Host fictional voice",
"adapter": "host",
"toolHint": "Use an installed fictional catalog TTS skill or tool, then register the resulting local file with provider:record."
},
"manual-voice": {
"label": "Imported narration",
"adapter": "manual",
"toolHint": "Place an authorized narration file at the request output path, then register it with provider:record."
}
}
}
}
}