ChatGPT-Next-Web/app/api/openai/typing.ts
lishiyun1227 e3f2d8e570 add
2023-04-17 14:47:10 +08:00

8 lines
207 B
TypeScript

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