Debugger-style panel showing the language model's next-token probabilities, with the top candidate highlighted and bars scaled to softmax weight.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Ai16 } from "@/components/beste/piece/ai16";
<Ai16
title="next_token"
context="The capital of France is"
topPrefix="top"
tokens={[
{
"token": "Paris",
"probability": 0.643
},
{
"token": "the",
"probability": 0.187
},
{
"token": "located",
"probability": 0.081
},
{
"token": "also",
"probability": 0.042
},
{
"token": "a",
"probability": 0.021
}
]}
/>