jan/docs/src/pages/index.mdx
2025-10-28 17:26:27 +07:00

42 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Open source ChatGPT alternative that runs offline"
description: "Jan is building Open Superintelligence. Its the open-source ChatGPT alternative that leverages the best of open-source AI."
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 Home from "@/components/Home"
export const getStaticProps = async() => {
const resReleaseLatest = await fetch('https://api.github.com/repos/janhq/jan/releases/latest')
const resRelease = await fetch('https://api.github.com/repos/janhq/jan/releases?per_page=500')
const resRepo = await fetch('https://api.github.com/repos/janhq/jan')
const repo = await resRepo.json()
const latestRelease = await resReleaseLatest.json()
const release = await resRelease.json()
return {
props: {
ssg: {
stars: repo.stargazers_count || 2000,
lastRelease: latestRelease,
release: release,
lastVersion: latestRelease.tag_name || 'v.0.0.1'
},
},
}
}
<Home />