2023-03-09 17:01:40 +00:00
|
|
|
import type {
|
|
|
|
CreateChatCompletionRequest,
|
|
|
|
CreateChatCompletionResponse,
|
|
|
|
} from "openai";
|
|
|
|
|
|
|
|
export type ChatRequest = CreateChatCompletionRequest;
|
2023-04-11 04:06:12 +00:00
|
|
|
export type ChatResponse = CreateChatCompletionResponse;
|