Spaces:
Sleeping
Sleeping
| # Medical AI Assistant - Requirements | |
| # Core FastAPI and server dependencies | |
| fastapi==0.104.1 | |
| uvicorn[standard]==0.24.0 | |
| pydantic==2.5.0 | |
| # HTTP client for API calls | |
| httpx==0.25.2 | |
| # Data processing and scientific computing | |
| numpy==1.24.3 | |
| pandas==2.0.3 | |
| # Machine learning and embeddings | |
| sentence-transformers==2.2.2 | |
| torch==2.1.1 | |
| transformers==4.35.2 | |
| accelerate==0.26.0 | |
| # Vector similarity search | |
| faiss-cpu==1.7.4 | |
| # LLMs | |
| google-genai | |
| huggingface_hub | |
| # MongoDB | |
| pymongo==4.6.0 | |
| # System monitoring | |
| psutil==5.9.6 | |
| # Environment and configuration | |
| python-dotenv==1.0.0 | |
| # CORS and middleware | |
| python-multipart==0.0.6 | |
| # Logging and utilities | |
| colorama==0.4.6 | |
| rich==13.7.0 | |
| # Development and testing | |
| pytest==7.4.3 | |
| pytest-asyncio==0.21.1 | |
| black==23.11.0 | |
| flake8==6.1.0 | |
| # NVIDIA Riva client for speech-to-text | |
| nvidia-riva-client | |
| # Optional: GPU support for embeddings (uncomment if using CUDA) | |
| # torch==2.1.1+cu118 --index-url https://download.pytorch.org/whl/cu118 | |
| # faiss-gpu==1.7.4 | |