Spaces:
Sleeping
Sleeping
File size: 442 Bytes
bb8f662 | 1 2 3 4 5 6 7 8 9 10 11 | // HuggingFace Spaces backend — permanent public URL
// Replace YOUR-HF-USERNAME with your actual HuggingFace username after deployment
export const API_BASE_URL = "https://YOUR-HF-USERNAME-vqa-backend.hf.space";
export const API_ENDPOINTS = {
HEALTH: "/health",
ANSWER: "/api/answer",
MODELS_INFO: "/api/models/info",
};
// 60s timeout — HF Space may need ~30s to wake from sleep on first request
export const API_TIMEOUT = 60000;
|