ChatGPT-Next-Web/app/api/chat/typing.ts

8 lines
206 B
TypeScript

import type {
CreateChatCompletionRequest,
CreateChatCompletionResponse,
} from "openai";
export type ChatRequest = CreateChatCompletionRequest;
export type ChatReponse = CreateChatCompletionResponse;