-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecondme.json
More file actions
60 lines (60 loc) · 1.6 KB
/
Copy pathsecondme.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "MedRoundTable",
"version": "1.0.0",
"description": "AI-powered clinical research roundtable platform with 5 specialized medical agents",
"main": "backend/main.py",
"scripts": {
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"frontend": "cd frontend && python3 -m http.server 3000",
"backend": "cd backend && python3 -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/medroundtable/medroundtable"
},
"keywords": [
"medical",
"clinical-research",
"AI",
"multi-agent",
"roundtable",
"kimi",
"healthcare"
],
"author": "MedRoundTable Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"python": ">=3.9"
},
"dependencies": {
"concurrently": "^8.2.0"
},
"secondme": {
"appName": "MedRoundTable",
"description": "临床研究圆桌会 - 5位AI专家协作平台",
"category": "medical",
"icon": "🩺",
"features": [
"5位专业AI专家(临床主任、博士生、流行病学家、统计学家、研究护士)",
"真实Kimi API集成",
"实时多Agent讨论",
"研究方案导出",
"思维导图可视化"
],
"env": {
"MOONSHOT_API_KEY": "${MOONSHOT_API_KEY}",
"MOONSHOT_BASE_URL": "https://api.moonshot.cn/v1",
"MOONSHOT_MODEL": "moonshot-v1-32k"
},
"ports": {
"frontend": 3000,
"backend": 8000
},
"startup": {
"command": "bash start.sh",
"healthCheck": "http://localhost:8000/health"
}
}
}