import { post } from '@/utils/request' export function fetchChatAPI( prompt: string, options?: { conversationId?: string; parentMessageId?: string }, ) { return post({ url: '/chat', data: { prompt, options }, }) } export function clearConversations() { return post({ url: '/clear', }) }