v12: LiteLLM voice support, Vertex AI, model discovery, APK crash fix
- LiteLLM: chat, TTS (tts-1), STT (whisper-1) via proxy - Google Vertex AI: direct chat, Gemini STT, Google Cloud TTS - Admin model management: discover/search/toggle/custom models - TTS shows actual provider in toast (not hardcoded ElevenLabs) - APK crash fix: proper PNG splash + mipmap icons - Server-side audio backups with gzip compression - Expandable AI correction viewer - Zero-config browser speech recognition - Bump to v12.0.0
This commit is contained in:
parent
d5d0ddcb95
commit
7e22902e47
3 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
pediatric-scribe:
|
||||
image: danielonyejesi/pediatric-ai-scribe-v3:v10
|
||||
image: danielonyejesi/pediatric-ai-scribe-v3:v12
|
||||
ports:
|
||||
- "3552:3000"
|
||||
env_file:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pediatric-ai-scribe",
|
||||
"version": "9.1.0",
|
||||
"version": "12.0.0",
|
||||
"description": "AI-powered pediatric clinical documentation platform",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ app.get('/api/models', async (req, res) => {
|
|||
const { activeProvider } = require('./src/utils/ai');
|
||||
app.get('/api/health', (req, res) => {
|
||||
res.json({
|
||||
status: 'running', version: '9.1.0', provider: activeProvider,
|
||||
status: 'running', version: '12.0.0', provider: activeProvider,
|
||||
timestamp: new Date().toISOString(),
|
||||
openrouter: process.env.OPENROUTER_API_KEY ? 'configured' : 'missing',
|
||||
bedrock: process.env.AWS_BEDROCK_REGION ? 'configured' : 'not configured',
|
||||
|
|
@ -209,7 +209,7 @@ const PORT = process.env.PORT || 3000;
|
|||
server.listen(PORT, () => {
|
||||
console.log('');
|
||||
console.log('==========================================');
|
||||
console.log('🏥 PEDIATRIC AI SCRIBE v9.1');
|
||||
console.log('🏥 PEDIATRIC AI SCRIBE v12.0');
|
||||
console.log('==========================================');
|
||||
console.log('🌐 http://localhost:' + PORT);
|
||||
console.log('🤖 Provider: ' + activeProvider);
|
||||
|
|
|
|||
Loading…
Reference in a new issue