mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-08 22:12:33 +08:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import type {
|
|
CreateChatCompletionRequest,
|
|
CreateChatCompletionResponse,
|
|
} from "openai";
|
|
|
|
export type ChatRequest = CreateChatCompletionRequest;
|
|
export type ChatReponse = CreateChatCompletionResponse;
|