ai service methods

This commit is contained in:
nick-delirium 2025-06-03 15:57:23 +02:00
parent 3bf34cc652
commit 9099d36108
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

@ -17,7 +17,7 @@ export default class AiService extends BaseService {
},
);
return r.json();
return r.text();
}
async getDetailedSummary(
@ -37,7 +37,7 @@ export default class AiService extends BaseService {
},
);
return r.json();
return r.text();
}
async getSearchFilters(query: string): Promise<Record<string, any>> {