import { Inter } from "next/font/google"; import Link from "next/link"; import CodeMirror from "@uiw/react-codemirror"; import { inlineSuggestion } from "codemirror-extension-inline-suggestion"; import { EditorState } from "@codemirror/state"; import { EditorView } from "@codemirror/view"; import * as webllm from "@mlc-ai/web-llm"; import { useState, useEffect } from "react"; const inter = Inter({ subsets: ["latin"] }); export default function Home() { const [engine, setEngine] = useState(null); const [isLoading, setIsLoading] = useState(false); const [loadingStatus, setLoadingStatus] = useState(''); useEffect(() => { async function loadWebLLM() { setIsLoading(true); const initProgressCallback = (report: webllm.InitProgressReport) => { setLoadingStatus(report.text); }; const selectedModel = "SmolLM-360M-q016-MLC"; const appConfig: webllm.AppConfig = { model_list: [{ model: `https://huggingface.co/cfahlgren1/SmolLM-360M-q016-MLC`, model_id: 'SmolLM-360M-q016-MLC', model_lib: `${webllm.modelLibURLPrefix}${webllm.modelVersion}/SmolLM-360M-Instruct-q0f16-ctx2k_cs1k-webgpu.wasm`, overrides: { context_window_size: 2048 }, }], }; try { const newEngine = await webllm.CreateMLCEngine(selectedModel, { appConfig, initProgressCallback, logLevel: "INFO", }); setEngine(newEngine); } catch (err) { console.error(`Failed to load the model: ${(err as Error).message}`); } finally { setIsLoading(false); } } loadWebLLM(); }, []); const generateCompletion = async (content: string) => { if (!engine) return; try { const response = await engine.completions.create({ prompt: content, max_tokens: 15, }); return response.choices[0].text || ""; } catch (err) { console.error(`Error: ${(err as Error).message}`); return ""; } }; return (

SmolPilot

What if you had a 360M parameter model in your pocket?

{isLoading ? (

{loadingStatus}

) : (
{ const content = state.doc.toString(); return (await generateCompletion(content)) || ""; }, delay: 500 }), EditorView.lineWrapping ]} />

Keep in mind, this is a 360M parameter model, it's not Llama 3.1 405B 🤗

)}
); }