File size: 272 Bytes
6a37520
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import type {
  CreateChatCompletionRequest,
  CreateChatCompletionResponse,
} from "openai";

export type ChatRequest = CreateChatCompletionRequest;
export type ChatResponse = CreateChatCompletionResponse;

export type Updater<T> = (updater: (value: T) => void) => void;