chat-ui / src /lib /types /AbortedGeneration.ts
Adrien Denat
Stop generation button (closes #86) (#88)
2772555 unverified
raw history blame
No virus
274 Bytes
// Ideally shouldn't be needed, see https://github.com/huggingface/chat-ui/pull/88#issuecomment-1523173850
import type { Conversation } from "./Conversation";
export interface AbortedGeneration {
createdAt: Date;
updatedAt: Date;
conversationId: Conversation["_id"];
}