Files
test1/components/ppt-editor/server/index.ts
2026-03-20 07:33:46 +00:00

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)
}