CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/components/llm-plain-link.tsx
Views: 687
1
import { LanguageModel, model2vendor } from "@cocalc/util/db-schema/llm-utils";
2
import { modelToName } from "../frame-editors/llm/llm-selector";
3
import { A } from "./A";
4
5
export function LLMNameLink({ model }: { model: LanguageModel }) {
6
return <A href={model2vendor(model).url}>{modelToName(model)}</A>;
7
}
8
9