Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 73e8108

Browse files
committed
fix: api path - add v1 component
1 parent f6e667f commit 73e8108

File tree

1 file changed

+2
-2
lines changed
  • cortex-js/src/infrastructure/constants

1 file changed

+2
-2
lines changed

cortex-js/src/infrastructure/constants/cortex.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ export const CORTEX_CPP_MODELS_URL = (
3131
export const CORTEX_JS_HEALTH_URL = (
3232
host: string = defaultCortexJsHost,
3333
port: number = defaultCortexJsPort,
34-
) => `http://${host}:${port}/health`;
34+
) => `http://${host}:${port}/v1/health`;
3535

3636
export const CORTEX_JS_STOP_API_SERVER_URL = (
3737
host: string = defaultCortexJsHost,
3838
port: number = defaultCortexJsPort,
39-
) => `http://${host}:${port}/process`;
39+
) => `http://${host}:${port}/v1/process`;
4040

4141
// INITIALIZATION
4242
export const CORTEX_RELEASES_URL =

0 commit comments

Comments
 (0)