sdgkkk / types.ts
hongshi2025's picture
Upload 16 files
89b1816 verified
raw
history blame contribute delete
455 Bytes
export interface ChatMessage {
role: "user" | "assistant" | "system" | string;
content: string;
}
export interface ChatCompletionRequest {
model: string;
messages: ChatMessage[];
stream?: boolean;
}
export interface ModelInfo {
id: string;
object: string;
created: number;
owned_by: string;
}
export interface ApiResponse<T = unknown> {
data?: T;
error?: string;
object?: string;
}