10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { request } from '@/http/request';
|
|
|
|
|
|
export function savePPT(content: {
|
|
task_id: string
|
|
slide_path: string
|
|
slide_content: string
|
|
}) {
|
|
return request.post('/v1/super_agent/chat/slide', content)
|
|
} |