Files
GenBI-Node-Setup/controller/handleOrchestration.js
T
Gitea 03a8b87936
Deploy Node App / deploy (push) Successful in 8s
vega update
2026-06-01 13:38:36 +05:30

392 lines
9.3 KiB
JavaScript

const axios = require('axios');
require('dotenv').config();
const { OpenAI } = require('openai');
const yaml = require('js-yaml');
const azureEndpoint = "https://cpmindiayoda-resource.services.ai.azure.com";
const deploymentName = "gpt-4o-mini";
const apiVersion = "2024-08-01-preview";
const client = new OpenAI({
baseURL: `${azureEndpoint}/openai/deployments/${deploymentName}`,
apiKey: process.env.AZURE_OPENAI_KEY,
defaultHeaders: { 'api-key': process.env.AZURE_OPENAI_KEY },
defaultQuery: { 'api-version': apiVersion }
});
const WREN_URL = "http://172.236.172.26:3000/api/graphql";
// const gql = async (operationName, query, variables) => {
// const res = await axios.post(WREN_URL, { operationName, query, variables }, {
// headers: { "Content-Type": "application/json", Accept: "application/json" },
// timeout: 60000,
// });
// if (res.data?.errors) throw new Error(res.data.errors[0].message);
// return res.data.data;
// };
const gql = async (
operationName,
query,
variables = {},
options = {}
) => {
const {
retries = 3,
timeout = 60000
} = options;
const payload = {
operationName,
query,
variables
};
let lastError;
for (let attempt = 1; attempt <= retries; attempt++) {
const startTime = Date.now();
try {
console.log(
`[GraphQL] ${operationName} | Attempt ${attempt}/${retries}`
);
const response = await axios.post(
WREN_URL,
payload,
{
timeout,
headers: {
"Content-Type": "application/json",
Accept: "application/json"
},
validateStatus: () => true
}
);
const duration = Date.now() - startTime;
console.log(
`[GraphQL] ${operationName} | ${response.status} | ${duration}ms`
);
// HTTP Error
if (response.status >= 400) {
throw new Error(
`HTTP ${response.status}: ${response.data?.message ||
response.statusText
}`
);
}
// Empty Response
if (!response.data) {
throw new Error(
`Empty response received for ${operationName}`
);
}
// GraphQL Errors
if (
Array.isArray(response.data.errors) &&
response.data.errors.length > 0
) {
const graphQLError = response.data.errors
.map(err => err.message)
.join(" | ");
throw new Error(graphQLError);
}
// Missing Data
if (!response.data.data) {
throw new Error(
`No data returned from GraphQL operation: ${operationName}`
);
}
return response.data.data;
} catch (error) {
lastError = error;
const duration = Date.now() - startTime;
console.error(
`[GraphQL Error] ${operationName} | Attempt ${attempt}/${retries} | ${duration}ms`
);
console.error(error.message);
const shouldRetry =
attempt < retries &&
(
error.code === "ECONNABORTED" ||
error.code === "ECONNRESET" ||
error.code === "ETIMEDOUT" ||
error.code === "ENOTFOUND" ||
error.code === "ECONNREFUSED" ||
error.message.includes("timeout")
);
if (!shouldRetry) {
break;
}
const delay = attempt * 2000;
console.log(
`[GraphQL Retry] Waiting ${delay}ms before retry...`
);
await new Promise(resolve =>
setTimeout(resolve, delay)
);
}
}
throw new Error(
`[${operationName}] Failed after ${retries} attempts. ${lastError?.message}`
);
};
const pollUntilFinished = async (taskId, maxAttempts = 50) => {
for (let i = 0; i < maxAttempts; i++) {
const { askingTask } = await gql("AskingTask",
`query AskingTask($taskId: String!) {
askingTask(taskId: $taskId) {
status
candidates { sql }
error { message }
}
}`,
{ taskId }
);
console.log(`Poll ${i + 1} => ${askingTask?.status}`);
if (askingTask?.error) throw new Error(askingTask.error.message);
if (askingTask?.status === "FINISHED") {
if (askingTask?.candidates?.length > 0) {
return { sql: askingTask.candidates[0].sql, type: "sql" };
}
return {
sql: null,
type: "clarification",
message: "I couldn't generate SQL for this question. Please try rephrasing.",
};
}
await new Promise(r => setTimeout(r, 2000));
}
throw new Error("Wren polling timeout");
};
const fetchWrenData = async (prompt) => {
try {
// Step 1: Create task
const { createAskingTask } = await gql("CreateAskingTask",
`mutation CreateAskingTask($data: AskingTaskInput!) {
createAskingTask(data: $data) { id }
}`,
{ data: { question: prompt } }
);
console.log("Task =>", createAskingTask.id);
// Step 2: Poll for SQL
const pollResult = await pollUntilFinished(createAskingTask.id);
// Clarification needed
if (pollResult.type === "clarification") {
return {
success: false,
type: "clarification",
message: pollResult.message,
data: [],
chart: null,
};
}
const wrenSql = pollResult.sql;
console.log("SQL ready");
// Step 3: Create thread
const { createThread } = await gql("CreateThread",
`mutation CreateThread($data: CreateThreadInput!) {
createThread(data: $data) { id }
}`,
{ data: { question: prompt, sql: wrenSql } }
);
console.log("Thread =>", createThread.id);
// Step 4: Create thread response
const { createThreadResponse } = await gql("CreateThreadResponse",
`mutation CreateThreadResponse($threadId: Int!, $data: CreateThreadResponseInput!) {
createThreadResponse(threadId: $threadId, data: $data) { id }
}`,
{ threadId: createThread.id, data: { question: prompt, sql: wrenSql } }
);
console.log("Response ID =>", createThreadResponse.id);
// Step 5: Preview data
const { previewData } = await gql("PreviewData",
`mutation PreviewData($where: PreviewDataInput!) {
previewData(where: $where)
}`,
{ where: { responseId: parseInt(createThreadResponse.id) } }
);
const columns = previewData.columns.map(c => c.name);
const rows = previewData.data.map(row =>
Object.fromEntries(columns.map((col, i) => [col, row[i]]))
);
console.log(`Done — ${rows.length} rows`);
console.table(rows);
return {
success: true,
type: "data",
prompt,
sql: wrenSql,
totalRows: rows.length,
columns,
data: rows,
};
} catch (err) {
console.error("WREN ERROR =>", err.message);
return {
success: false,
type: "error",
data: [],
chart: null,
message: err.message,
};
}
};
const generateVegaJson = async (queryResult) => {
try {
const systemPrompt = `You are a data visualization expert. I will provide a user's question and a JSON array of data. Your task is to generate a strictly valid Vega-Lite JSON specification to visualize this data. The data array will be provided to the Vega spec internally. Map the JSON keys to the correct x, y, and color axes. Choose the best chart type (bar,pai,line, arc) based on the question.`;
const userPrompt = `
DATA:
${JSON.stringify(queryResult, null, 2)}
Generate Vega-Lite JSON.
`;
const completion = await client.chat.completions.create({
model: deploymentName,
temperature: 0,
messages: [
{
role: "system",
content: systemPrompt
},
{
role: "user",
content: userPrompt
}
]
});
const vegaJson = completion.choices[0].message.content.trim();
const cleanJson = vegaJson
.replace(/```json/g, "")
.replace(/```/g, "")
.trim();
return JSON.parse(cleanJson);
} catch (err) {
console.error("Vega Generation Error =>", err.message);
throw err;
}
};
const ask = async (req, res) => {
try {
const { prompt } = req.body;
if (!prompt?.trim()) {
return res.status(400).json({
success: false,
message: "Prompt required"
});
}
const result = await fetchWrenData(prompt);
if (!result.success) {
return res.json(result);
}
const vegaSpec = await generateVegaJson({
columns: result.columns,
data: result.data,
chart: result.prompt,
sql: result.sql
});
// console.log("Ask Result =>",vegaSpec);
return res.json({
...result,
vegaSpec
});
} catch (err) {
console.error(err);
return res.status(500).json({
success: false,
message: err.message
});
}
};
const getSuggestedQuestions = async () => {
try {
const { threads } = await gql(
"Threads",
`
query Threads {
threads {
id
summary
}
}
`,
{}
);
return (threads || [])
.filter(t => t.summary)
.slice(0, 5)
.map(t => ({
question: t.summary,
category: "Recent"
}));
} catch (fallbackErr) {
console.error(
"Fallback failed =>",
fallbackErr.message
);
return [];
}
};
const suggestions = async (req, res) => {
const questions = await getSuggestedQuestions();
res.json({ success: true, questions });
}
module.exports = { ask, suggestions };