Trasforma il testo clinico in informazioni strutturate con una sola riga di codice.
Estrazione di entità, de-identificazione dei PII e oltre 1.000 modelli medici specializzati che girano
interamente sul tuo hardware — da una riga in Python a un'app Swift nativa su iPhone, accelerata da Apple MLX.
Niente cloud. Nessun vincolo con il fornitore. Nessun dato del paziente che lascia la tua rete.
1.000+ modelli · 12 lingue · 247 checkpoint PII · 100% sul dispositivo · Apache-2.0
English · 简体中文 · Español · Français · Deutsch · Italiano · Português · Nederlands · العربية · हिन्दी · తెలుగు · 日本語 · Türkçe · فارسی
| **API Python** ```python from openmed import analyze_text analyze_text( "Patient received 75mg " "clopidogrel for NSTEMI.", model_name= "pharma_detection_superclinical", ) ``` | **Servizio REST** ```bash uvicorn openmed.service.app:app \ --host 0.0.0.0 --port 8080 ``` `GET /health` `POST /analyze` `POST /pii/extract` `POST /pii/deidentify` | **Batch** ```python from openmed import BatchProcessor p = BatchProcessor( model_name= "disease_detection_superclinical", group_entities=True, ) p.process_texts([...]) ``` |