This commit is contained in:
2026-07-20 11:56:02 +08:00
commit 2dcae4165b
176 changed files with 34633 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
API_BASE_URL,
apiRequest,
buildWebSocketUrl,
getCurrentUser
} from '../assistant/chat-service'
export { buildWebSocketUrl, getCurrentUser }
export function activityOutlineGen(data) {
return apiRequest({
url: `${API_BASE_URL}/ai/activityOutlineGen`,
method: 'POST',
data,
withTenant: true
})
}