Spaces:
Sleeping
Sleeping
File size: 11,332 Bytes
d78adb0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | #!/usr/bin/env python3
"""
CLI Interface for Ayush FHIR Service
Provides command-line testing and demonstration capabilities
"""
import asyncio
import json
import sys
from pathlib import Path
from typing import Dict, Any, List
import argparse
# Add app directory to path
sys.path.insert(0, str(Path(__file__).parent / "app"))
from app.storage import terminology_store
from app.ingest import ingest_csv_file
from app.who_api import who_client
from app.snomed_loinc import snomed_service, loinc_service
from app.fhir_resources import create_problem_list_entry
from app.iso_22600 import check_resource_access
class AyushFHIRCLI:
"""Command-line interface for Ayush FHIR Service"""
def __init__(self):
self.loaded = False
def load_data(self):
"""Load default dataset"""
if not self.loaded:
data_path = Path(__file__).parent / "data" / "namaste_200.csv"
if data_path.exists():
content = data_path.read_bytes()
count = ingest_csv_file(content)
print(f"β Loaded {count} NAMASTE terms")
self.loaded = True
else:
print("β Default dataset not found")
sys.exit(1)
def search_namaste(self, query: str) -> None:
"""Search NAMASTE terms"""
self.load_data()
results = terminology_store.search(query)
print(f"\nπ Search Results for '{query}':")
print("=" * 50)
if results['exact']:
print("\nπ Exact Matches:")
for item in results['exact']:
print(f" β’ {item['code']}: {item['label']}")
if item['synonyms']:
print(f" Synonyms: {', '.join(item['synonyms'])}")
if item['icd11_tm2_codes']:
print(f" ICD-11: {', '.join(item['icd11_tm2_codes'])}")
if results['partial']:
print("\nπ Partial Matches:")
for item in results['partial']:
print(f" β’ {item['code']}: {item['label']}")
if item['synonyms']:
print(f" Synonyms: {', '.join(item['synonyms'])}")
if item['icd11_tm2_codes']:
print(f" ICD-11: {', '.join(item['icd11_tm2_codes'])}")
if not results['exact'] and not results['partial']:
print(" No matches found")
def translate_term(self, code: str, system: str) -> None:
"""Translate between NAMASTE and ICD-11"""
self.load_data()
results = terminology_store.translate(code, system)
print(f"\nπ Translation: {code} ({system})")
print("=" * 50)
if results['matches']:
for match in results['matches']:
print(f" β {match['system']}: {match['code']}")
else:
print(" No translations found")
def suggest_ai(self, query: str) -> None:
"""AI-powered suggestions with confidence"""
self.load_data()
results = terminology_store.suggest_with_confidence(query)
print(f"\nπ€ AI Suggestions for '{query}':")
print("=" * 50)
if results['suggestions']:
for suggestion in results['suggestions']:
print(f" β’ {suggestion['namaste_code']}: {suggestion['label']}")
print(f" Confidence: {suggestion['confidence']}%")
if suggestion['icd11_candidates']:
print(f" ICD-11: {', '.join(suggestion['icd11_candidates'])}")
else:
print(" No suggestions found")
async def search_who_tm2(self, query: str) -> None:
"""Search WHO ICD-11 TM2"""
print(f"\nπ WHO ICD-11 TM2 Search: '{query}'")
print("=" * 50)
try:
entities = await who_client.get_tm2_entities()
filtered = [
e for e in entities
if query.lower() in e.get('title', '').lower() or
query.lower() in ' '.join(e.get('synonyms', [])).lower()
]
if filtered:
for entity in filtered:
print(f" β’ {entity['id']}: {entity['title']}")
print(f" Definition: {entity.get('definition', 'N/A')}")
if entity.get('synonyms'):
print(f" Synonyms: {', '.join(entity['synonyms'])}")
else:
print(" No TM2 entities found")
except Exception as e:
print(f" Error: {e}")
def search_snomed(self, query: str) -> None:
"""Search SNOMED CT"""
print(f"\nπ₯ SNOMED CT Search: '{query}'")
print("=" * 50)
concepts = snomed_service.search_concepts(query)
if concepts:
for concept in concepts:
print(f" β’ {concept.code}: {concept.display}")
print(f" System: {concept.system}")
print(f" Category: {concept.category}")
else:
print(" No SNOMED concepts found")
def search_loinc(self, query: str) -> None:
"""Search LOINC"""
print(f"\nπ§ͺ LOINC Search: '{query}'")
print("=" * 50)
codes = loinc_service.search_codes(query)
if codes:
for code in codes:
print(f" β’ {code.code}: {code.display}")
print(f" System: {code.system}")
print(f" Category: {code.category}")
else:
print(" No LOINC codes found")
def create_problem_list(self, namaste_code: str) -> None:
"""Create FHIR Problem List entry"""
self.load_data()
print(f"\nπ Creating Problem List Entry: {namaste_code}")
print("=" * 50)
try:
term = terminology_store.namaste.get(namaste_code)
if not term:
print(f" β NAMASTE code {namaste_code} not found")
return
condition = create_problem_list_entry(
namaste_code=namaste_code,
icd11_codes=term.icd11_tm2_codes,
patient_id="patient-001",
practitioner_id="practitioner-001",
encounter_id="encounter-001"
)
print(" β FHIR Condition created:")
print(f" ID: {condition['id']}")
print(f" Status: {condition['clinicalStatus']['coding'][0]['display']}")
print(f" Codings:")
for coding in condition['code']['coding']:
print(f" β’ {coding['system']}: {coding['code']} - {coding['display']}")
print(f"\n π Dual Coding Summary:")
print(f" NAMASTE: {namaste_code} - {term.label}")
print(f" ICD-11: {', '.join(term.icd11_tm2_codes)}")
except Exception as e:
print(f" β Error: {e}")
def check_access(self, subject_id: str, action: str, resource_type: str) -> None:
"""Check access control"""
print(f"\nπ Access Control Check")
print("=" * 50)
allowed, reason = check_resource_access(
subject_id=subject_id,
subject_type="practitioner",
subject_roles=["doctor"],
action=action,
resource_type=resource_type,
resource_id="example-001",
purpose="TREATMENT"
)
print(f" Subject: {subject_id}")
print(f" Action: {action}")
print(f" Resource: {resource_type}")
print(f" Result: {'β ALLOWED' if allowed else 'β DENIED'}")
print(f" Reason: {reason}")
def demo_workflow(self) -> None:
"""Demonstrate complete workflow"""
print("\nπ― Complete Ayush FHIR Workflow Demo")
print("=" * 60)
# 1. Search for a term
self.search_namaste("Amlapitta")
# 2. Get AI suggestions
self.suggest_ai("dyspepsia")
# 3. Translate
self.translate_term("AY001", "namaste")
# 4. Search WHO TM2
asyncio.run(self.search_who_tm2("dyspepsia"))
# 5. Search SNOMED
self.search_snomed("stomach")
# 6. Search LOINC
self.search_loinc("glucose")
# 7. Create Problem List
self.create_problem_list("AY001")
# 8. Check Access
self.check_access("doctor-001", "read", "Condition")
print("\nβ
Demo completed successfully!")
def main():
"""Main CLI entry point"""
parser = argparse.ArgumentParser(description="Ayush FHIR Service CLI")
parser.add_argument("command", choices=[
"search", "translate", "suggest", "who-tm2", "snomed", "loinc",
"problem-list", "access", "demo"
], help="Command to execute")
parser.add_argument("--query", "-q", help="Search query")
parser.add_argument("--code", "-c", help="Code to translate")
parser.add_argument("--system", "-s", choices=["namaste", "icd11"],
help="System for translation")
parser.add_argument("--subject", help="Subject ID for access check")
parser.add_argument("--action", help="Action for access check")
parser.add_argument("--resource", help="Resource type for access check")
args = parser.parse_args()
cli = AyushFHIRCLI()
if args.command == "search":
if not args.query:
print("Error: --query required for search")
sys.exit(1)
cli.search_namaste(args.query)
elif args.command == "translate":
if not args.code or not args.system:
print("Error: --code and --system required for translate")
sys.exit(1)
cli.translate_term(args.code, args.system)
elif args.command == "suggest":
if not args.query:
print("Error: --query required for suggest")
sys.exit(1)
cli.suggest_ai(args.query)
elif args.command == "who-tm2":
if not args.query:
print("Error: --query required for who-tm2")
sys.exit(1)
asyncio.run(cli.search_who_tm2(args.query))
elif args.command == "snomed":
if not args.query:
print("Error: --query required for snomed")
sys.exit(1)
cli.search_snomed(args.query)
elif args.command == "loinc":
if not args.query:
print("Error: --query required for loinc")
sys.exit(1)
cli.search_loinc(args.query)
elif args.command == "problem-list":
if not args.code:
print("Error: --code required for problem-list")
sys.exit(1)
cli.create_problem_list(args.code)
elif args.command == "access":
if not all([args.subject, args.action, args.resource]):
print("Error: --subject, --action, and --resource required for access")
sys.exit(1)
cli.check_access(args.subject, args.action, args.resource)
elif args.command == "demo":
cli.demo_workflow()
if __name__ == "__main__":
main()
|