import clsx from 'clsx'; import Heading from '@theme/Heading'; import styles from './styles.module.css'; const FeatureList = [ { title: 'Easy LLM Integration', Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: ( <> Easy integration with Ollama, enabling the execution of large language models locally. ), }, { title: 'Developer-Friendly', Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> Clean and simple APIs, focused on seamless interaction with Ollama. ), }, { title: 'Powered by Java', Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <> Empowers Java developers to harness the full capabilities of Ollama. ), }, ]; function Feature({Svg, title, description}) { return (
{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }