| const API_BASE = 'http://localhost:8000'; | |
| export async function askQuestion(query, confirmed = false) { | |
| const res = await fetch(`${API_BASE}/chat`, { | |
| method: 'POST', | |
| headers: { 'Content-Type': 'application/json' }, | |
| body: JSON.stringify({ query, confirmed }), | |
| }); | |
| if (!res.ok) { | |
| throw new Error(`Server error: ${res.status}`); | |
| } | |
| return res.json(); | |
| } | |