This commit is contained in:
van
2026-04-05 21:35:50 +08:00
parent 5cbcfa9533
commit 2d1f980a47
2 changed files with 49 additions and 3 deletions

View File

@@ -91,3 +91,12 @@ export function resetAllLlmConfig() {
method: 'delete'
})
}
/** 连通测试:可选 profileId、message不传 profileId 则用 Jarvis 当前激活/默认 */
export function testLlmProfile(data) {
return request({
url: '/jarvis/social-media/llm-config/test',
method: 'post',
data: data || {}
})
}