mirror of
https://git.mirrors.martin98.com/https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-07-30 18:21:59 +08:00
10 lines
272 B
TypeScript
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;
|