Spaces:
Running
Running
File size: 344 Bytes
3340d60 0e503a7 3340d60 |
1 2 3 4 5 6 7 8 9 10 |
export async function sendMessageToBot(message, history = []) {
const response = await fetch("https://naveen07garg-airlinechatbot.hf.space/chat", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ message, history })
});
return response.json(); // {answer: "...", citations: [...] }
}
|