import axios from './config' // export const SERVER_URL = 'http://localhost:5000' export const SERVER_URL = (import.meta.env.MODE === 'development') ? '/api' : 'https://server.pptist.cn' export const ASSET_URL = 'https://asset.pptist.cn' export const API_URL = 'https://pbl.cocorobo.cn/api/pbl/' interface AIPPTOutlinePayload { content: string language: string model: string } interface AIPPTPayload { content: string language: string style: string model: string } interface AIWritingPayload { content: string command: string } export default { getMockData(filename: string): Promise { return axios.get(`./mocks/${filename}.json`) }, getFileData(filename: string): Promise { // return axios.get(`${ASSET_URL}/data/${filename}.json`) return axios.get(`./mocks/${filename}.json`) }, AIPPT_Outline({ content, language, model, }: AIPPTOutlinePayload): Promise { return fetch(`${SERVER_URL}/tools/aippt_outline`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ content, language, model, stream: true, }), }) }, AIPPT({ content, language, style, model, }: AIPPTPayload): Promise { return fetch(`${SERVER_URL}/tools/aippt`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ content, language, model, style, stream: true, }), }) }, AI_Writing({ content, command, }: AIWritingPayload): Promise { return fetch(`${SERVER_URL}/tools/ai_writing`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ content, command, stream: true, }), }) }, }