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