import { GET, POST, DELETE } from './request'; import type { ChatItemType, ChatSiteItemType } from '@/types/chat'; import type { InitChatResponse } from './response/chat'; /** * 获取一个聊天框的ID */ export const getChatSiteId = (modelId: string, isShare = false) => GET(`/chat/generate?modelId=${modelId}&isShare=${isShare ? 'true' : 'false'}`); /** * 获取初始化聊天内容 */ export const getInitChatSiteInfo = (chatId: string) => GET(`/chat/init?chatId=${chatId}`); /** * 发送 GPT3 prompt */ export const postGPT3SendPrompt = ({ chatId, prompt }: { prompt: ChatSiteItemType[]; chatId: string; }) => POST(`/chat/gpt3`, { chatId, prompt: prompt.map((item) => ({ obj: item.obj, value: item.value })) }); /** * 存储一轮对话 */ export const postSaveChat = (data: { chatId: string; prompts: ChatItemType[] }) => POST('/chat/saveChat', data); /** * 删除最后一句 */ export const delLastMessage = (chatId: string) => DELETE(`/chat/delLastMessage?chatId=${chatId}`);