This commit is contained in:
X1627315083@163.com
2026-02-25 15:12:04 +08:00
parent 74346516f1
commit 9e2c60e892
5 changed files with 11 additions and 124 deletions

View File

@@ -9,7 +9,7 @@ import request from '@/utils/request'
*/
export const getChatNodeDetail = (data) => {
return request({
url: `/api/project/${data.projectId}/chat/node/${data.id}`,
url: `/api/version/${data.projectId}/chat/node/${data.id}`,
method: 'get',
})
}
@@ -22,7 +22,7 @@ export const getChatNodeDetail = (data) => {
*/
export const versionTree = (data) => {
return request({
url: `/api/project/${data.projectId}/chat/tree`,
url: `/api/version/${data.projectId}/chat/tree`,
method: 'get',
})
}