@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
26 lines (21 loc) • 581 B
text/typescript
import { LobeSessions } from '@/types/session/agentSession';
import { LobeSessionGroups, SessionGroupId } from '@/types/session/sessionGroup';
export * from './agentSession';
export * from './sessionGroup';
export interface ChatSessionList {
sessionGroups: LobeSessionGroups;
sessions: LobeSessions;
}
export interface UpdateSessionParams {
group?: SessionGroupId;
meta?: any;
pinned?: boolean;
updatedAt: Date;
}
export interface SessionRankItem {
avatar: string | null;
backgroundColor: string | null;
count: number;
id: string;
title: string | null;
}