feat: realistic face avatar + voice input + ASR endpoint

This commit is contained in:
yuzhiran
2026-06-12 15:32:04 +08:00
parent 6fe84b6ef8
commit 8191cf4b41
26 changed files with 1934 additions and 228 deletions
+7
View File
@@ -83,6 +83,13 @@ export const apiService = {
byPosition: (position: string) =>
request(API_ENDPOINTS.DAILY_QUESTION.BY_POSITION(position), 'GET', undefined, true),
},
share: {
create: (data: { type: string; refId?: string; title?: string; description?: string }) =>
request(API_ENDPOINTS.SHARE.CREATE, 'POST', data, true),
stats: () => request(API_ENDPOINTS.SHARE.STATS, 'GET', undefined, true),
records: () => request(API_ENDPOINTS.SHARE.RECORDS, 'GET', undefined, true),
visitors: () => request(API_ENDPOINTS.SHARE.VISITORS, 'GET', undefined, true),
},
}
export default apiService