forked from cyberlesterr/paper-collage-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproviders.local.example.json
More file actions
66 lines (66 loc) · 1.69 KB
/
Copy pathproviders.local.example.json
File metadata and controls
66 lines (66 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "./schemas/providers.schema.json",
"schemaVersion": 1,
"capabilities": {
"text": {
"defaultProvider": "custom-text",
"providers": {
"custom-text": {
"label": "My language model",
"adapter": "command",
"requiredEnv": ["MY_LLM_API_KEY"],
"model": "my-language-model",
"command": {
"executable": "node",
"args": [
"scripts/local/text-adapter.mjs",
"--request={request}",
"--output={output}"
],
"timeoutSeconds": 300
}
}
}
},
"image": {
"defaultProvider": "custom-image",
"providers": {
"custom-image": {
"label": "My image service",
"adapter": "command",
"requiredEnv": ["MY_IMAGE_API_KEY"],
"model": "my-image-model",
"command": {
"executable": "node",
"args": [
"scripts/local/image-adapter.mjs",
"--request={request}",
"--output={output}"
],
"timeoutSeconds": 900
}
}
}
},
"voice": {
"defaultProvider": "custom-voice",
"providers": {
"custom-voice": {
"label": "My fictional voice service",
"adapter": "command",
"requiredEnv": ["MY_VOICE_API_KEY"],
"model": "my-voice-model",
"command": {
"executable": "node",
"args": [
"scripts/local/voice-adapter.mjs",
"--request={request}",
"--output={output}"
],
"timeoutSeconds": 900
}
}
}
}
}
}