devsite/app/utils/askAI.js
2025-02-11 22:27:45 +01:00

6 lines
190 B
JavaScript

export async function askAI(question) {
const response = await fetch(`/api/proxy?q=${encodeURIComponent(question)}`);
const data = await response.json();
return data.response;
}