forked from steamship-core/gpt4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsteamship.json
61 lines (61 loc) · 1.48 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
{
"type": "plugin",
"handle": "litellm",
"version": "0.0.6",
"description": "",
"author": "steamship",
"entrypoint": "Unused",
"public": false,
"plugin": {
"isTrainable": false,
"transport": "jsonOverHttp",
"type": "generator",
"streaming": true
},
"build_config": {
"ignore": [
"tests",
"examples"
]
},
"configTemplate": {
"litellm_env": {
"type": "string",
"description": "LiteLLM provider environment, in the form <key>:<value>[;<key>:<value>...]. See LiteLLM documentation for supported variables. Params must end with _API_KEY, and in the case of 'AZURE', _API_VERSION, or _API_BASE. Leaving this empty uses Steamship's environment and thus Steamship billing.",
"default": ""
},
"max_retries": {
"type": "number",
"description": "Maximum number of retries to make when generating.",
"default": 8
},
"default_role": {
"type": "string",
"description": "The default role to use for a block that does not have a Tag of kind='role'",
"default": "user"
},
"default_system_prompt": {
"type": "string",
"description": "System prompt that will be prepended before every request",
"default": ""
}
},
"steamshipRegistry": {
"tagline": "",
"tagline2": null,
"usefulFor": null,
"videoUrl": null,
"githubUrl": null,
"demoUrl": null,
"blogUrl": null,
"jupyterUrl": null,
"authorGithub": "",
"authorName": "steamship",
"authorEmail": null,
"authorTwitter": null,
"authorUrl": null,
"tags": [
"Prompt API"
]
}
}