import type { GenericAbortSignal } from 'axios' import { post } from '@/utils/request' export function fetchChatAPI( prompt: string, options?: { conversationId?: string; parentMessageId?: string }, signal?: GenericAbortSignal, ) { return post({ url: '/chat', data: { prompt, options }, signal, }) } export function fetchChatConfig() { return post({ url: '/config', }) }