ollama/web/app/download/page.tsx

36 lines
882 B
TypeScript
Raw Normal View History

2023-07-07 20:07:10 +00:00
import { Octokit } from '@octokit/rest'
import { redirect } from 'next/navigation'
const octokit = new Octokit()
export default async function Download() {
const res = await fetch('https://api.github.com/repos/jmorganca/ollama/releases', { next: { revalidate: 60 } })
const data = await res.json()
if (data.length === 0) {
return new Response('not found', { status: 404 })
}
const latest = data[0]
const assets = latest.assets || []
if (assets.length === 0) {
return new Response('not found', { status: 404 })
}
2023-07-07 20:07:10 +00:00
// todo: get the correct asset for the current arch/os
const asset = assets.find(
(a: any) => a.name.toLowerCase().includes('darwin') && a.name.toLowerCase().includes('.zip')
)
if (!asset) {
return new Response('not found', { status: 404 })
}
2023-07-07 20:07:10 +00:00
if (asset) {
redirect(asset.browser_download_url)
}
return null
}