mirror of
https://github.com/Ladebeze66/devsite.git
synced 2025-12-16 05:47:46 +01:00
6 lines
190 B
JavaScript
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;
|
|
}
|