1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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<any> {
- return axios.get(`./mocks/${filename}.json`)
- },
- getFileData(filename: string): Promise<any> {
- // return axios.get(`${ASSET_URL}/data/${filename}.json`)
- return axios.get(`./mocks/${filename}.json`)
- },
- AIPPT_Outline({
- content,
- language,
- model,
- }: AIPPTOutlinePayload): Promise<any> {
- 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<any> {
- 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<any> {
- return fetch(`${SERVER_URL}/tools/ai_writing`, {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({
- content,
- command,
- stream: true,
- }),
- })
- },
- }
|