const res = await fetch("https://rag-api-llm.up.railway.app/embeddings", {
method: "POST",
headers: {
"Content-Type": "application/json",
"authorization": apiKey,
},
body: JSON.stringify({
query: "search query",
file_ids: ["939b2cd7-56d5-4c44-b491-14bfc202e9a0"]
}),
});