ChatGPT-Next-Web/app/api/openai/typing.ts
2023-04-25 00:49:27 +08:00

10 lines
272 B
TypeScript

import type {
CreateChatCompletionRequest,
CreateChatCompletionResponse,
} from "openai";
export type ChatRequest = CreateChatCompletionRequest;
export type ChatResponse = CreateChatCompletionResponse;
export type Updater<T> = (updater: (value: T) => void) => void;