9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { request } from '@/http/request';
|
|
|
|
export function saveMarkdown(content: {
|
|
task_id: string
|
|
path: string
|
|
content: string
|
|
}) {
|
|
return request.post('/v1/super_agent/chat/write_file', content)
|
|
} |