forked from xprilion/OpenMLR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
52 lines (52 loc) · 1.27 KB
/
app.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "OpenMLR",
"description": "Self-hosted ML research agent - plans tasks, reads papers, writes drafts, runs experiments",
"repository": "https://github.com/xprilion/OpenMLR",
"logo": "https://openmlr.dev/logo.png",
"keywords": ["ml", "research", "ai", "agent", "papers"],
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "basic"
},
"worker": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
},
{
"plan": "heroku-redis:mini"
}
],
"env": {
"JWT_SECRET_KEY": {
"generator": "secret"
},
"USE_BACKGROUND_JOBS": {
"value": "true"
},
"USE_REDIS_PUBSUB": {
"value": "true"
},
"OPENAI_API_KEY": {
"description": "OpenAI API key (optional if using other providers)",
"required": false
},
"ANTHROPIC_API_KEY": {
"description": "Anthropic API key (optional if using other providers)",
"required": false
},
"OPENROUTER_API_KEY": {
"description": "OpenRouter API key (optional if using other providers)",
"required": false
}
},
"scripts": {
"postdeploy": "echo 'Deployment complete! Add at least one LLM API key in Settings > Config Vars'"
}
}