"use client"; import Image from "next/image"; import { Wllama } from "@wllama/wllama"; import WasmFromCDN from "@wllama/wllama/src/wasm-from-cdn"; import { useMemo } from "react"; export default function Home() { const test = useMemo(() => new Wllama(WasmFromCDN), []); console.log(test.createCompletion); return (
Next.js logo
  1. Get started by editing{" "} app/page.tsx .
  2. Save and see your changes instantly.
Vercel logomark Deploy now Read our docs
); }