guide node

This commit is contained in:
archer
2023-07-18 11:07:46 +08:00
parent d346d38677
commit f9d83c481f
25 changed files with 313 additions and 279 deletions

View File

@@ -3,7 +3,7 @@ import type { ChatItemType } from '@/types/chat';
import { VariableItemType } from '@/types/app';
export interface InitChatResponse {
historyId: string;
chatId: string;
appId: string;
app: {
variableModules?: VariableItemType[];
@@ -13,6 +13,7 @@ export interface InitChatResponse {
intro: string;
canUse: boolean;
};
customTitle?: string;
title: string;
variables: Record<string, any>;
history: ChatItemType[];