Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
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 cortex-js/src/infrastructure/constants/cortex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ export const CORTEX_CPP_MODELS_URL = (
export const CORTEX_JS_HEALTH_URL = (
host: string = defaultCortexJsHost,
port: number = defaultCortexJsPort,
) => `http://${host}:${port}/health`;
) => `http://${host}:${port}/v1/health`;

export const CORTEX_JS_STOP_API_SERVER_URL = (
host: string = defaultCortexJsHost,
port: number = defaultCortexJsPort,
) => `http://${host}:${port}/process`;
) => `http://${host}:${port}/v1/process`;

// INITIALIZATION
export const CORTEX_RELEASES_URL =
Expand Down