chat-ui / src /lib /types /AbortedGeneration.ts
victor's picture
victor HF staff
Add settings (#134)
82fcab7 unverified
raw history blame
No virus
305 Bytes
// Ideally shouldn't be needed, see https://github.com/huggingface/chat-ui/pull/88#issuecomment-1523173850
import type { Conversation } from "./Conversation";
import type { Timestamps } from "./Timestamps";
export interface AbortedGeneration extends Timestamps {
conversationId: Conversation["_id"];
}