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