The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Projectoria LLM Analyze (Remote Ollama qwen3.6:35b)",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "llm-analyze",
"responseMode": "responseNode",
"options": {}
},
"id": "c9123f5d-fd62-48c8-a2b8-7c76f0e2f8b1",
"name": "Webhook LLM Analyze",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
-900,
300
]
},
{
"parameters": {
"mode": "runOnceForAllItems",
"jsCode": "const first = items?.[0]?.json ?? {};\nconst payload = first.body ?? first;\n\nconst sourceTextRaw = (payload.sourceText || payload.text || payload.prompt || '').toString().trim();\nif (!sourceTextRaw) {\n throw new Error('\u041d\u0443\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c sourceText (\u0438\u043b\u0438 text/prompt)');\n}\n\nconst maxInputChars = Number(payload.maxInputChars || 12000);\nconst sourceText = sourceTextRaw.length > maxInputChars\n ? `${sourceTextRaw.slice(0, maxInputChars)}\\n\\n[\u0422\u0435\u043a\u0441\u0442 \u0441\u043e\u043a\u0440\u0430\u0449\u0435\u043d \u0434\u043b\u044f LLM \u043f\u043e \u043b\u0438\u043c\u0438\u0442\u0443 ${maxInputChars} \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432]`\n : sourceTextRaw;\n\nconst projectTitle = (payload.projectTitle || payload.title || '\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f').toString().trim();\nconst projectId = (payload.projectId || '').toString().trim();\nconst model = (payload.model || 'qwen3.6:35b').toString().trim();\nconst ollamaBaseUrl = (payload.ollamaBaseUrl || 'http://ollama:11434').toString().trim().replace(/\\/$/, '');\nconst ollamaChatUrl = (payload.ollamaChatUrl || `${ollamaBaseUrl}/api/chat`).toString().trim();\nconst ollamaProxyChatUrl = (payload.ollamaProxyChatUrl || '').toString().trim();\nconst ollamaRequestUrl = ollamaProxyChatUrl || ollamaChatUrl;\nconst departments = Array.isArray(payload.departments) ? payload.departments : [];\n\nconst deptList = departments\n .map((d) => {\n const code = (d?.code || '').toString().trim();\n const name = (d?.name || '').toString().trim();\n const competencies = Array.isArray(d?.competencies)\n ? d.competencies.map((item) => item.toString().trim()).filter(Boolean)\n : [];\n const employeeCompetencies = Array.isArray(d?.employeeCompetencies)\n ? d.employeeCompetencies.map((item) => item.toString().trim()).filter(Boolean)\n : [];\n const details = [\n competencies.length ? `\u041a\u043e\u043c\u043f\u0435\u0442\u0435\u043d\u0446\u0438\u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f: ${competencies.join(', ')}` : '',\n employeeCompetencies.length ? `\u041a\u043e\u043c\u043f\u0435\u0442\u0435\u043d\u0446\u0438\u0438 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u043e\u0432: ${employeeCompetencies.join(', ')}` : '',\n ].filter(Boolean).join(' | ');\n if (!code && !name) return null;\n return `- ${code || 'N/A'} | ${name || '\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f'}${details ? ` | ${details}` : ''}`;\n })\n .filter(Boolean)\n .join('\\n');\n\nconst systemPrompt = [\n '\u0422\u044b \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430.',\n '\u0412\u0435\u0440\u043d\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u041e\u0414\u0418\u041d \u0432\u0430\u043b\u0438\u0434\u043d\u044b\u0439 JSON-\u043e\u0431\u044a\u0435\u043a\u0442. \u041d\u0438\u043a\u0430\u043a\u043e\u0433\u043e markdown, \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0438 \u043f\u043e\u044f\u0441\u043d\u0435\u043d\u0438\u0439.',\n '\u041d\u0435 \u0432\u044b\u0434\u0443\u043c\u044b\u0432\u0430\u0439 \u0444\u0430\u043a\u0442\u044b. \u0415\u0441\u043b\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u043c\u0430\u043b\u043e \u2014 \u044f\u0432\u043d\u043e \u0443\u043a\u0430\u0436\u0438 \u044d\u0442\u043e \u0432 \u0442\u0435\u043a\u0441\u0442\u0435 \u043f\u043e\u043b\u0435\u0439.',\n '\u041f\u0438\u0448\u0438 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u043b\u0430\u043a\u043e\u043d\u0438\u0447\u043d\u043e.',\n '\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 \u0441\u0442\u0440\u043e\u0433\u043e: high | medium | low.',\n '\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043c\u0430:',\n '- summary: \u0434\u043e 700 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432',\n '- tasks: \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 6 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432',\n '- task.description: \u0434\u043e 220 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432',\n '- departmentSuggestions: \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c 4 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430',\n '- emailBody: \u0434\u043e 900 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432',\n '\u0412\u0430\u0436\u043d\u043e: emailBody \u0430\u0434\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0441\u043a\u043e\u043c\u0443 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044e \u0438\u043b\u0438 \u0435\u0433\u043e \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0430\u043c, \u0430 \u043d\u0435 \u0437\u0430\u043a\u0430\u0437\u0447\u0438\u043a\u0443 \u043f\u0440\u043e\u0435\u043a\u0442\u0430.',\n '\u041d\u0435\u043b\u044c\u0437\u044f \u043e\u0431\u0440\u0430\u0449\u0430\u0442\u044c\u0441\u044f \u043a \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044e \u043a\u0430\u043a \u043a \u0437\u0430\u043a\u0430\u0437\u0447\u0438\u043a\u0443, \u043a\u043b\u0438\u0435\u043d\u0442\u0443, \u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0443 \u0438\u043b\u0438 \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0430.',\n '\u0412 emailBody \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0439 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0443\u0447\u0430\u0441\u0442\u0438\u0435 \u0432 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0438 \u043e\u0446\u0435\u043d\u0438\u0442\u044c \u0441\u0432\u043e\u044e \u0437\u043e\u043d\u0443 \u0440\u0430\u0431\u043e\u0442.',\n '\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430\u0437\u044b\u0432\u0430\u0439 \u0437\u0430\u043f\u0440\u043e\u0441\u043e\u043c \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e/\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u0430\u0437\u0447\u0438\u043a\u0430. \u041d\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439 \u0444\u043e\u0440\u043c\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0438: \u0432\u0430\u0448 \u0437\u0430\u043f\u0440\u043e\u0441, \u0432\u0430\u0448 \u043f\u0440\u043e\u0435\u043a\u0442, \u0432\u0430\u0448\u0430 \u0437\u0430\u0434\u0430\u0447\u0430.',\n '\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0441\u0442\u0440\u043e\u0433\u043e \u0442\u0430\u043a\u0430\u044f:',\n '{',\n ' \"summary\": \"...\",',\n ' \"tasks\": [',\n ' { \"title\": \"...\", \"description\": \"...\", \"priority\": \"high|medium|low\" }',\n ' ],',\n ' \"departmentSuggestions\": [',\n ' {',\n ' \"departmentCode\": \"...\",',\n ' \"relevanceReason\": \"...\",',\n ' \"problemFragment\": \"...\",',\n ' \"adaptedPitch\": \"...\",',\n ' \"emailSubject\": \"\u0422\u0435\u043c\u0430 \u043f\u0438\u0441\u044c\u043c\u0430 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044e\",',\n ' \"emailBody\": \"\u0422\u0435\u043a\u0441\u0442 \u043f\u0438\u0441\u044c\u043c\u0430 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\"',\n ' }',\n ' ]',\n '}'\n].join('\\n');\n\nconst userPrompt = [\n `\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u0430: ${projectTitle}`,\n '',\n '\u0422\u0435\u043a\u0441\u0442 \u0437\u0430\u043f\u0440\u043e\u0441\u0430/\u0441\u0442\u0435\u043d\u043e\u0433\u0440\u0430\u043c\u043c\u044b:',\n sourceText,\n '',\n deptList ? `\u041f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f:\\n${deptList}` : '\u041f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u044b.'\n].join('\\n');\n\nconst ollamaRequest = {\n projectId,\n model,\n think: false,\n stream: false,\n format: 'json',\n keep_alive: '30m',\n messages: [\n { role: 'system', content: systemPrompt },\n { role: 'user', content: userPrompt }\n ],\n options: {\n temperature: 0,\n top_p: 0.9,\n num_predict: 2400,\n num_ctx: 8192,\n repeat_penalty: 1.1\n }\n};\n\nreturn [{\n json: {\n projectId,\n projectTitle,\n sourceText,\n departments,\n model,\n ollamaBaseUrl,\n ollamaChatUrl,\n ollamaProxyChatUrl,\n ollamaRequestUrl,\n ollamaRequest\n }\n}];"
},
"id": "d50e3888-c1f9-4209-8102-6cecd9db5fec",
"name": "Prepare Input",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
-620,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{$json.ollamaRequestUrl}}",
"authentication": "none",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{$json.ollamaRequest}}",
"options": {
"timeout": 1800000
}
},
"id": "a83cc8af-42f7-481d-a574-bab2713dc6d2",
"name": "Call Ollama Chat",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
-340,
300
]
},
{
"parameters": {
"mode": "runOnceForAllItems",
"jsCode": "const rawItem = items?.[0]?.json ?? {};\nconst rawText = (rawItem?.message?.content || rawItem?.response || '').toString().trim();\nconst doneReason = (\n rawItem?.done_reason ||\n rawItem?.doneReason ||\n rawItem?.message?.done_reason ||\n rawItem?.finish_reason ||\n rawItem?.finishReason ||\n ''\n).toString();\n\nif (!rawText) {\n throw new Error('\u041c\u043e\u0434\u0435\u043b\u044c \u0432\u0435\u0440\u043d\u0443\u043b\u0430 \u043f\u0443\u0441\u0442\u043e\u0439 \u043e\u0442\u0432\u0435\u0442 (message.content \u043f\u0443\u0441\u0442\u043e\u0439)');\n}\n\nconst stripMarkdownFences = (text) => {\n let t = text.trim();\n if (t.startsWith('```')) {\n t = t.replace(/^```json\\s*/i, '').replace(/^```\\s*/i, '').replace(/\\s*```$/, '').trim();\n }\n return t;\n};\n\nconst extractFirstJsonObject = (text) => {\n const s = text;\n let start = -1;\n let depth = 0;\n let inString = false;\n let escaped = false;\n\n for (let i = 0; i < s.length; i += 1) {\n const ch = s[i];\n\n if (inString) {\n if (escaped) escaped = false;\n else if (ch === '\\\\') escaped = true;\n else if (ch === '\"') inString = false;\n continue;\n }\n\n if (ch === '\"') {\n inString = true;\n continue;\n }\n\n if (ch === '{') {\n if (start === -1) start = i;\n depth += 1;\n continue;\n }\n\n if (ch === '}') {\n if (start !== -1) {\n depth -= 1;\n if (depth === 0) return s.slice(start, i + 1);\n }\n }\n }\n\n return null;\n};\n\nconst removeTrailingCommas = (text) => text.replace(/,\\s*([}\\]])/g, '$1');\n\nconst normalizePriority = (value) => {\n const v = (value || '').toString().toLowerCase();\n if (v === 'high' || v === 'medium' || v === 'low') return v;\n return 'medium';\n};\n\nconst extractQuotedField = (text, key) => {\n const keyRegex = new RegExp(`\"${key}\"\\\\s*:\\\\s*\"`, 'i');\n const match = keyRegex.exec(text);\n if (!match) return null;\n\n let i = match.index + match[0].length;\n let escaped = false;\n let value = '';\n\n while (i < text.length) {\n const ch = text[i];\n\n if (escaped) {\n if (ch === 'n') value += '\\n';\n else if (ch === 'r') value += '\\r';\n else if (ch === 't') value += '\\t';\n else value += ch;\n escaped = false;\n i += 1;\n continue;\n }\n\n if (ch === '\\\\') {\n escaped = true;\n i += 1;\n continue;\n }\n\n if (ch === '\"') {\n return value.trim();\n }\n\n value += ch;\n i += 1;\n }\n\n return value.trim();\n};\n\nconst extractTasksFallback = (text) => {\n const tasks = [];\n const taskPattern = /\"title\"\\s*:\\s*\"([\\s\\S]*?)\"\\s*,\\s*\"description\"\\s*:\\s*\"([\\s\\S]*?)\"\\s*,\\s*\"priority\"\\s*:\\s*\"(high|medium|low)\"/gi;\n\n let match = taskPattern.exec(text);\n while (match && tasks.length < 6) {\n tasks.push({\n title: match[1].trim() || '\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f',\n description: match[2].trim() || '\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e',\n priority: normalizePriority(match[3]),\n });\n match = taskPattern.exec(text);\n }\n\n return tasks;\n};\n\nconst extractDepartmentSuggestionsFallback = (text) => {\n const pattern = /\"departmentCode\"\\s*:\\s*\"([\\s\\S]*?)\"[\\s\\S]*?\"relevanceReason\"\\s*:\\s*\"([\\s\\S]*?)\"[\\s\\S]*?\"problemFragment\"\\s*:\\s*\"([\\s\\S]*?)\"[\\s\\S]*?\"adaptedPitch\"\\s*:\\s*\"([\\s\\S]*?)\"[\\s\\S]*?\"emailSubject\"\\s*:\\s*\"([\\s\\S]*?)\"[\\s\\S]*?\"emailBody\"\\s*:\\s*\"([\\s\\S]*?)\"/gi;\n const result = [];\n\n let match = pattern.exec(text);\n while (match && result.length < 4) {\n result.push({\n departmentCode: (match[1] || '').trim(),\n relevanceReason: (match[2] || '').trim() || '\u0420\u0435\u043b\u0435\u0432\u0430\u043d\u0442\u043d\u043e\u0441\u0442\u044c \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430',\n problemFragment: (match[3] || '').trim() || '\u0424\u0440\u0430\u0433\u043c\u0435\u043d\u0442 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d',\n adaptedPitch: (match[4] || '').trim() || '\u041f\u043e\u044f\u0441\u043d\u0435\u043d\u0438\u0435 \u043d\u0435 \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u043e',\n emailSubject: (match[5] || '').trim() || '\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443',\n emailBody: (match[6] || '').trim() || '\u0422\u0435\u043a\u0441\u0442 \u043f\u0438\u0441\u044c\u043c\u0430 \u043d\u0435 \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d',\n });\n match = pattern.exec(text);\n }\n\n return result;\n};\n\nconst clean = stripMarkdownFences(rawText);\nconst extracted = extractFirstJsonObject(clean);\n\nconst candidates = [];\nconst addCandidate = (v) => {\n if (typeof v !== 'string') return;\n const t = v.trim();\n if (t && !candidates.includes(t)) candidates.push(t);\n};\n\naddCandidate(clean);\naddCandidate(extracted);\naddCandidate(removeTrailingCommas(clean));\nif (extracted) addCandidate(removeTrailingCommas(extracted));\n\nlet parsed = null;\nlet lastError = '';\nfor (const c of candidates) {\n try {\n parsed = JSON.parse(c);\n break;\n } catch (e) {\n lastError = String(e?.message || e);\n }\n}\n\nconst looksTruncated =\n doneReason === 'length' ||\n /unterminated string|unexpected end of json input|end of data|eof|truncated/i.test(lastError);\n\nif (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)) {\n const recoveredSummary =\n extractQuotedField(clean, 'summary') ||\n '\u041e\u0442\u0432\u0435\u0442 \u043c\u043e\u0434\u0435\u043b\u0438 \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0441\u043f\u0430\u0440\u0441\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e. \u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u044b\u0439 \u0437\u0430\u043f\u0443\u0441\u043a \u0430\u043d\u0430\u043b\u0438\u0437\u0430.';\n\n return [{\n json: {\n summary: recoveredSummary.slice(0, 700),\n tasks: extractTasksFallback(clean),\n departmentSuggestions: extractDepartmentSuggestionsFallback(clean),\n _meta: {\n truncated: looksTruncated,\n recoveredFromInvalidJson: true,\n doneReason,\n parseError: lastError,\n model: rawItem.model || null,\n promptEvalCount: rawItem.prompt_eval_count || null,\n evalCount: rawItem.eval_count || null,\n rawPreview: rawText.slice(0, 1000),\n },\n },\n }];\n}\n\nconst summary = typeof parsed.summary === 'string'\n ? parsed.summary\n : '\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f \u043a\u0440\u0430\u0442\u043a\u043e\u0433\u043e \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f';\n\nconst tasks = Array.isArray(parsed.tasks)\n ? parsed.tasks.slice(0, 6).map((t) => ({\n title: (t?.title || '\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f').toString(),\n description: (t?.description || '\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e').toString(),\n priority: normalizePriority(t?.priority),\n }))\n : [];\n\nconst departmentSuggestions = Array.isArray(parsed.departmentSuggestions)\n ? parsed.departmentSuggestions.slice(0, 4).map((d) => ({\n departmentCode: (d?.departmentCode || '').toString(),\n relevanceReason: (d?.relevanceReason || '\u0420\u0435\u043b\u0435\u0432\u0430\u043d\u0442\u043d\u043e\u0441\u0442\u044c \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430').toString(),\n problemFragment: (d?.problemFragment || '\u0424\u0440\u0430\u0433\u043c\u0435\u043d\u0442 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d').toString(),\n adaptedPitch: (d?.adaptedPitch || '\u041f\u043e\u044f\u0441\u043d\u0435\u043d\u0438\u0435 \u043d\u0435 \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u043e').toString(),\n emailSubject: (d?.emailSubject || '\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443').toString(),\n emailBody: (d?.emailBody || '\u0422\u0435\u043a\u0441\u0442 \u043f\u0438\u0441\u044c\u043c\u0430 \u043d\u0435 \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d').toString(),\n }))\n : [];\n\nreturn [{\n json: {\n summary,\n tasks,\n departmentSuggestions,\n _meta: {\n truncated: false,\n recoveredFromInvalidJson: false,\n doneReason,\n model: rawItem.model || null,\n promptEvalCount: rawItem.prompt_eval_count || null,\n evalCount: rawItem.eval_count || null,\n },\n },\n}];\n"
},
"id": "fb9db8df-9cb0-42e0-a3a5-69676a6e3beb",
"name": "Parse LLM JSON",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
-60,
300
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "={{$json}}",
"options": {}
},
"id": "c391773b-44b9-4879-b722-4880ca3ad8d9",
"name": "Respond",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1.1,
"position": [
220,
300
]
}
],
"connections": {
"Webhook LLM Analyze": {
"main": [
[
{
"node": "Prepare Input",
"type": "main",
"index": 0
}
]
]
},
"Prepare Input": {
"main": [
[
{
"node": "Call Ollama Chat",
"type": "main",
"index": 0
}
]
]
},
"Call Ollama Chat": {
"main": [
[
{
"node": "Parse LLM JSON",
"type": "main",
"index": 0
}
]
]
},
"Parse LLM JSON": {
"main": [
[
{
"node": "Respond",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"executionOrder": "v1"
},
"versionId": "7f4c2db8-28c0-4f03-91e2-af7604a5fa10",
"meta": {
"templateCredsSetupCompleted": false
},
"id": "Xos9ALb7Vv5DTebp",
"tags": []
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Projectoria LLM Analyze (Remote Ollama qwen3.6:35b). Uses httpRequest. Webhook trigger; 5 nodes.
Source: https://github.com/andrey-vstk/projectoria_utmn/blob/main/docs/n8n/workflows/Main.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow automates end-to-end social media publishing powered by Late API. It generates text content with Google Gemini, creates branded visuals with Kie.ai, uploads media to Late, and publishes
This workflow is perfect for app developers, SaaS founders, and mobile growth teams who need constant UGC-style video ads without hiring creators or agencies. If you're spending $500+ per creator and
AI Background Generation with Nano Banana (Gemini Image). Uses httpRequest, googleDrive. Webhook trigger; 35 nodes.
This template is for developers, teams, and automation enthusiasts who want a private, PIN-protected Telegram chatbot that answers questions from their own documents — without relying on external AI A
Elevate your digital presence with high-fidelity cinematic video automation. This workflow orchestrates the complex, asynchronous rendering process of OpenAI Sora—transforming static product images or