-
Get started by editing{" "}
app/page.tsx. - Save and see your changes instantly.
"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 (
app/page.tsx
.