క్లినికల్ టెక్స్ట్ను ఒకే కోడ్ లైన్తో నిర్మాణాత్మక అంతర్దృష్టిగా మార్చండి.
ఎంటిటీ వెలికితీత, PII డీ-ఐడెంటిఫికేషన్, మరియు పూర్తిగా మీ స్వంత హార్డ్వేర్పై నడిచే 1,000+ ప్రత్యేక వైద్య
మోడల్లు — Python లో ఒక లైన్ నుండి, Apple MLX ద్వారా శక్తివంతమైన iPhone లో నేటివ్ Swift యాప్ వరకు. క్లౌడ్ లేదు.
వెండర్ లాక్-ఇన్ లేదు. రోగి డేటా మీ నెట్వర్క్ నుండి బయటకు వెళ్లదు.
1,000+ మోడల్లు · 12 భాషలు · 247 PII చెక్పాయింట్లు · 100% పరికరంలో · Apache-2.0
English · 简体中文 · Español · Français · Deutsch · Italiano · Português · Nederlands · العربية · हिन्दी · తెలుగు · 日本語 · Türkçe · فارسی
| **Python API** ```python from openmed import analyze_text analyze_text( "Patient received 75mg " "clopidogrel for NSTEMI.", model_name= "pharma_detection_superclinical", ) ``` | **REST సేవ** ```bash uvicorn openmed.service.app:app \ --host 0.0.0.0 --port 8080 ``` `GET /health` `POST /analyze` `POST /pii/extract` `POST /pii/deidentify` | **బ్యాచ్** ```python from openmed import BatchProcessor p = BatchProcessor( model_name= "disease_detection_superclinical", group_entities=True, ) p.process_texts([...]) ``` |