import { AiFillApple } from 'react-icons/ai' import models from '../../models.json' export default async function Home() { return (

Ollama {' '} is a tool for running large language models, currently for macOS with Windows and Linux coming soon.

Example models you can try running:

{models.map(m => (
ollama run {m.name}
))}
) }