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": "Arxiv Semantic Search",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "search-papers",
"options": {}
},
"id": "webhook-id",
"name": "Webhook Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1.1,
"position": [
200,
300
]
},
{
"parameters": {
"options": {}
},
"id": "agent-id",
"name": "AI Agent",
"type": "n8n-nodes-base.aiAgent",
"typeVersion": 1.1,
"position": [
400,
300
]
},
{
"parameters": {
"model": "gpt-4o",
"options": {}
},
"id": "openai-id",
"name": "OpenAI Chat Model",
"type": "n8n-nodes-base.lmChatOpenAi",
"typeVersion": 1,
"position": [
400,
500
],
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"collection": "arxiv_papers"
},
"id": "qdrant-id",
"name": "Qdrant Retriever",
"type": "n8n-nodes-base.qdrantVectorStore",
"typeVersion": 1,
"position": [
600,
500
],
"credentials": {
"qdrantApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"options": {}
},
"id": "buffer-id",
"name": "Window Buffer Memory",
"type": "n8n-nodes-base.memoryWindowBuffer",
"typeVersion": 1,
"position": [
250,
500
]
}
],
"connections": {
"Webhook Trigger": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Qdrant Retriever": {
"ai_tool": [
[
{
"node": "AI Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Window Buffer Memory": {
"ai_memory": [
[
{
"node": "AI Agent",
"type": "ai_memory",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
openAiApiqdrantApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Arxiv Semantic Search. Uses aiAgent, lmChatOpenAi, qdrantVectorStore, memoryWindowBuffer. Webhook trigger; 5 nodes.
Source: https://github.com/keila-moral/researchflow-ai/blob/main/workflows/Arxiv_Semantic_Search.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.
Calendar Event Auto-tag. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsOpenAi, vectorStoreWeaviate. Webhook trigger; 12 nodes.
Grant Application Routing. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsOpenAi, vectorStoreSupabase. Webhook trigger; 12 nodes.
Customer Auto-tagging. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsCohere, vectorStorePinecone. Webhook trigger; 12 nodes.
Birthday Telegram Reminder. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsOpenAi, vectorStoreWeaviate. Webhook trigger; 12 nodes.
Calendar to ClickUp. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsOpenAi, vectorStorePinecone. Webhook trigger; 12 nodes.