Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/frontend/src/utils/api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from 'axios';

export const API_URL = "https://20kbur51erc41s-5000.proxy.runpod.net";
export const API_URL = "https://gz3fkfo83p32f8-4000.proxy.runpod.net";

// Define TypeScript interfaces for API responses
export interface Model {
Expand Down Expand Up @@ -347,4 +347,4 @@ export const sendChatbotMessage = async (
preference, // Should be a string or null
});
return response.data;
};
};
4 changes: 2 additions & 2 deletions src/frontend/src/utils/image_Captioning_api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from 'axios';

export const API_URL = "https://20kbur51erc41s-5000.proxy.runpod.net";
export const API_URL = "https://gz3fkfo83p32f8-4000.proxy.runpod.net";

interface UploadImageFolderResponse {
message: string;
Expand Down Expand Up @@ -198,4 +198,4 @@ export const getCaptioningProgress = async (): Promise<AutoCaptionProgressRespon
} catch (error) {
return handleApiError(error);
}
}
}