UNPKG

macro_api

Version:

A comprehensive, production-ready API toolkit for various services including Stripe, Slack, SendGrid, Vercel, AWS S3, Docker Hub, and more.

11 lines (10 loc) 254 B
import ChatMessage from "./ChatMessage"; export default interface ChatCompletionOptions { model: string; messages: ChatMessage[]; temperature?: number; max_tokens?: number; top_p?: number; stream?: boolean; stop?: string[]; }