1
import { Mistral } from "@mistralai/mistralai";
3
const mistral = new Mistral({
4
apiKey: process.env["MISTRAL_API_KEY"] ?? "",
8
const result = await mistral.chat.complete({
9
model: "mistral-small-latest",
12
role: ChatCompletionRole.User,
13
content: "What is the difference between OpenAPI & Swagger?",