mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-18 08:43:57 +00:00
19 lines
312 B
JavaScript
19 lines
312 B
JavaScript
export default async function runAI(data, config) {
|
|
fetch('https://api.wit.ai/utterances', {
|
|
headers: {
|
|
authorization: `Bearer ${config.authToken}`
|
|
},
|
|
body: JSON.stringify([
|
|
{
|
|
text: data.text,
|
|
intent: data.label,
|
|
entities: [],
|
|
traits: []
|
|
}
|
|
]),
|
|
method: 'POST'
|
|
});
|
|
|
|
return;
|
|
}
|