File size: 274 Bytes
2772555
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// 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"];
}