- Bedrock: Add 14 non-vendor model models (Amazon Nova, Meta Llama 4, DeepSeek R1/V3, Mistral Large 3, Cohere Command R+, AI21 Jamba) with verified AWS model IDs - Bedrock: Implement Converse API for non-Anthropic models (unified cross-model API), keep native Messages API for vendor model models (best performance) - Milestones: Add Newborn / 1 month developmental milestones (Gross Motor, Fine Motor, Language, Social/Emotional, Cognitive) — previously started at 2 months - Bump version to 3.0.0, docker-compose tag to v3.0
29 lines
710 B
JSON
29 lines
710 B
JSON
{
|
|
"name": "pediatric-ai-scribe",
|
|
"version": "3.0.0",
|
|
"description": "AI-powered pediatric clinical documentation platform",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"openai": "^4.73.0",
|
|
"dotenv": "^16.4.5",
|
|
"cors": "^2.8.5",
|
|
"multer": "^1.4.5-lts.1",
|
|
"axios": "^1.7.7",
|
|
"pg": "^8.13.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"speakeasy": "^2.0.0",
|
|
"qrcode": "^1.5.4",
|
|
"nodemailer": "^6.9.16",
|
|
"cookie-parser": "^1.4.7",
|
|
"helmet": "^8.0.0",
|
|
"express-rate-limit": "^7.4.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@aws-sdk/client-bedrock-runtime": "^3.700.0"
|
|
}
|
|
}
|