-
Notifications
You must be signed in to change notification settings - Fork 78
/
steamship.json
60 lines (60 loc) · 1.42 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
{
"type": "package",
"handle": "auto-gpt",
"version": "0.11.0",
"description": "Deploy an AutoGPT Telegram bot on Steamship.",
"author": "",
"entrypoint": "Unused",
"public": true,
"plugin": null,
"build_config": {
"ignore": [
"tests",
"examples"
]
},
"configTemplate": {
"bot_token": {
"type": "string",
"description": "The secret token for your Telegram bot",
"default": null
},
"model_name": {
"type": "string",
"description": "The model name, either 'gpt-3.5-turbo' or 'gpt-4'",
"default": "gpt-3.5-turbo"
},
"max_tokens": {
"type": "number",
"description": "Maximum number of tokens that should be returned by the LLM for each call. This controls the length of the text responses.",
"default": 256
},
"max_iterations": {
"type": "number",
"description": "Maximum number of steps AutoGPT should take before stopping. Must be between 0 and 10 (0 is interpreted to mean to run without limits).",
"default": 3
}
},
"steamshipRegistry": {
"tagline": "Create your own Telegram Buddy running AutoGPT with Langchain and Steamship.",
"tagline2": null,
"usefulFor": null,
"videoUrl": null,
"githubUrl": null,
"demoUrl": null,
"blogUrl": null,
"jupyterUrl": null,
"authorGithub": null,
"authorName": null,
"authorEmail": null,
"authorTwitter": null,
"authorUrl": null,
"tags": [
"Telegram",
"LangChain",
"GPT",
"Agents",
"AutoGPT"
]
}
}