iat / api.ts
TutuAwad's picture
Upload api.ts
cd40da4 verified
raw
history blame contribute delete
413 Bytes
// Configure your Gradio endpoint URL here
// After deploying your Gradio app, replace this URL with your hosted endpoint
export const GRADIO_ENDPOINT = "https://huggingface.co/spaces/TutuAwad/iat";
// Minimum similarity threshold - songs below this won't be shown
export const MIN_SIMILARITY_THRESHOLD = 0.5;
// Demo mode - set to true to use mock data while setting up backend
export const DEMO_MODE = false;