Humanlearning's picture
feat: Add NPI API base URL configuration and Pydantic schemas for request arguments and response models.
1a0d97d
raw
history blame contribute delete
262 Bytes
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")