34 lines
699 B
Plaintext
34 lines
699 B
Plaintext
---
|
|
title: Download
|
|
description: Jan is a ChatGPT-alternative that runs on your own computer, with a local API server.
|
|
keywords:
|
|
[
|
|
Jan,
|
|
Customizable Intelligence, LLM,
|
|
local AI,
|
|
privacy focus,
|
|
free and open source,
|
|
private and offline,
|
|
conversational AI,
|
|
no-subscription fee,
|
|
large language models,
|
|
architecture,
|
|
]
|
|
---
|
|
|
|
import Download from "@/components/Download"
|
|
|
|
export const getStaticProps = async() => {
|
|
const resRelease = await fetch('https://api.github.com/repos/menloresearch/jan/releases/latest')
|
|
const release = await resRelease.json()
|
|
|
|
return {
|
|
props: {
|
|
ssg: {
|
|
lastRelease: release,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
<Download /> |