diff --git a/.github/workflows/nightly-integrate-cortex-cpp.yml b/.github/workflows/nightly-integrate-cortex-cpp.yml index 8ddc40a11..2cd7345c8 100644 --- a/.github/workflows/nightly-integrate-cortex-cpp.yml +++ b/.github/workflows/nightly-integrate-cortex-cpp.yml @@ -36,7 +36,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.PAT_SERVICE_ACCOUNT }} run: | - curl -s https://api.github.com/repos/janhq/cortex/releases > /tmp/github_api_releases.json + curl -s https://api.github.com/repos/menloresearch/cortex/releases > /tmp/github_api_releases.json latest_prerelease_name=$(cat /tmp/github_api_releases.json | jq -r '.[] | select(.prerelease) | .name' | head -n 1) get_asset_count() { diff --git a/server/cortex.json b/server/cortex.json index 215e44dc6..352c3a8a6 100644 --- a/server/cortex.json +++ b/server/cortex.json @@ -2668,7 +2668,7 @@ }, "url": { "type": "string", - "example": "https://api.github.com/repos/janhq/cortex.llamacpp/releases/186479804" + "example": "https://api.github.com/repos/menloresearch/cortex.llamacpp/releases/186479804" } } } diff --git a/web/hooks/useGetLatestRelease.ts b/web/hooks/useGetLatestRelease.ts index 3b76c2127..97304f74c 100644 --- a/web/hooks/useGetLatestRelease.ts +++ b/web/hooks/useGetLatestRelease.ts @@ -2,7 +2,9 @@ import useSWR from 'swr' const fetchLatestRelease = async (includeBeta: boolean) => { - const res = await fetch('https://api.github.com/repos/janhq/jan/releases') + const res = await fetch( + 'https://api.github.com/menloresearch/janhq/jan/releases' + ) if (!res.ok) throw new Error('Failed to fetch releases') const releases = await res.json()