From 62d4144537c56fe2aff7d05956b04d17177aa4fe Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Wed, 4 Dec 2024 15:38:58 -0800 Subject: [PATCH] [PIP] --- README.md | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 6bf8a7d..98f1e99 100644 --- a/README.md +++ b/README.md @@ -68,25 +68,11 @@ pip install radiology-swarm ### Basic Usage ```python -from radiology_swarm.main import run_diagnosis_agents +from radiology_swarm import run_diagnosis_agents -# Simple analysis with default parameters -result = run_diagnosis_agents( - prompt="Analyze this image and provide an analysis and then a treatment", - img="xray.jpeg" -) - -# Advanced usage with custom parameters -result = run_diagnosis_agents( - prompt="Detailed chest X-ray analysis with focus on cardiac silhouette", - img="chest_xray.dcm", - modality="xray", - priority="urgent", - previous_studies=["previous_xray.dcm"], - clinical_context={ - "symptoms": ["chest pain", "shortness of breath"], - "history": "Previous MI" - } +run_diagnosis_agents( + "Analyze this image and provide an analysis and then a treatment", + img="xray.jpeg", ) ```