Skip to content

Commit

Permalink
[PIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
kyegomez committed Dec 4, 2024
1 parent cd16c62 commit 62d4144
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
```

Expand Down

0 comments on commit 62d4144

Please sign in to comment.