Spaces:
Sleeping
Sleeping
feat: Add NPI API base URL configuration and Pydantic schemas for request arguments and response models.
1a0d97d
| import os | |
| # Base URL for the Modal NPI API service | |
| # Default to localhost for testing if not set, but in prod it should be set. | |
| NPI_API_BASE_URL = os.environ.get("NPI_API_BASE_URL", "https://humandotlearning--credentialwatch-backend-fastapi-app.modal.run/npi") | |