9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
export const API_MODELS = {
|
|
LIST: '/v1/models',
|
|
LOAD: '/models/load',
|
|
UNLOAD: '/models/unload'
|
|
};
|
|
|
|
/** CORS proxy endpoint path */
|
|
export const CORS_PROXY_ENDPOINT = '/cors-proxy';
|