This commit is contained in:
Leo
2025-11-13 16:08:47 +08:00
parent 9c8048ce7b
commit c858ab5ac7
2 changed files with 116 additions and 2 deletions

View File

@@ -8,6 +8,17 @@ export function executeInstruction(data) {
})
}
export function executeInstructionWithForce(data) {
return request({
url: '/jarvis/instruction/execute',
method: 'post',
data: {
...data,
forceGenerate: true
}
})
}
export function getHistory(type, limit) {
return request({
url: '/jarvis/instruction/history',