mirror of
https://github.com/Nikhil-Doye/workflow-builder.git
synced 2026-07-22 02:01:56 +02:00
Update .gitignore and remove build artifacts
- Added 'build' directory to .gitignore to prevent tracking of build outputs. - Deleted obsolete build files including asset-manifest.json, demo-workflows.json, index.html, and associated CSS and JS files, streamlining the project structure and reducing clutter.
This commit is contained in:
+2
-1
@@ -1,2 +1,3 @@
|
||||
node_modules
|
||||
.env
|
||||
.env
|
||||
build
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"files": {
|
||||
"main.css": "/static/css/main.8e4e3c66.css",
|
||||
"main.js": "/static/js/main.ee8320d2.js",
|
||||
"static/js/264.8f1d68b5.chunk.js": "/static/js/264.8f1d68b5.chunk.js",
|
||||
"index.html": "/index.html",
|
||||
"main.8e4e3c66.css.map": "/static/css/main.8e4e3c66.css.map",
|
||||
"main.ee8320d2.js.map": "/static/js/main.ee8320d2.js.map",
|
||||
"264.8f1d68b5.chunk.js.map": "/static/js/264.8f1d68b5.chunk.js.map"
|
||||
},
|
||||
"entrypoints": [
|
||||
"static/css/main.8e4e3c66.css",
|
||||
"static/js/main.ee8320d2.js"
|
||||
]
|
||||
}
|
||||
@@ -1,196 +0,0 @@
|
||||
{
|
||||
"workflows": [
|
||||
{
|
||||
"id": "demo-web-scraping-analysis",
|
||||
"name": "Web Scraping + AI Analysis",
|
||||
"description": "A complete workflow that scrapes a website and analyzes the content with AI",
|
||||
"nodes": [
|
||||
{
|
||||
"id": "input-1",
|
||||
"type": "dataInput",
|
||||
"position": { "x": 100, "y": 100 },
|
||||
"data": {
|
||||
"id": "input-1",
|
||||
"type": "dataInput",
|
||||
"label": "Website URL",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"dataType": "url",
|
||||
"defaultValue": "https://example.com"
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "scraper-1",
|
||||
"type": "webScraping",
|
||||
"position": { "x": 300, "y": 100 },
|
||||
"data": {
|
||||
"id": "scraper-1",
|
||||
"type": "webScraping",
|
||||
"label": "Web Scraper",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"url": "{{input-1.output}}",
|
||||
"formats": ["markdown", "html"],
|
||||
"maxLength": 2000
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "llm-1",
|
||||
"type": "llmTask",
|
||||
"position": { "x": 500, "y": 100 },
|
||||
"data": {
|
||||
"id": "llm-1",
|
||||
"type": "llmTask",
|
||||
"label": "Content Analyzer",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"prompt": "Analyze the following web content and provide a summary:\n\n{{scraper-1.output}}",
|
||||
"model": "deepseek-chat",
|
||||
"temperature": 0.7,
|
||||
"maxTokens": 500
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "output-1",
|
||||
"type": "dataOutput",
|
||||
"position": { "x": 700, "y": 100 },
|
||||
"data": {
|
||||
"id": "output-1",
|
||||
"type": "dataOutput",
|
||||
"label": "Analysis Result",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"format": "json",
|
||||
"filename": "analysis_result.json"
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"edges": [
|
||||
{
|
||||
"id": "edge-1",
|
||||
"source": "input-1",
|
||||
"target": "scraper-1"
|
||||
},
|
||||
{
|
||||
"id": "edge-2",
|
||||
"source": "scraper-1",
|
||||
"target": "llm-1"
|
||||
},
|
||||
{
|
||||
"id": "edge-3",
|
||||
"source": "llm-1",
|
||||
"target": "output-1"
|
||||
}
|
||||
],
|
||||
"createdAt": "2024-01-01T00:00:00.000Z",
|
||||
"updatedAt": "2024-01-01T00:00:00.000Z"
|
||||
},
|
||||
{
|
||||
"id": "demo-embedding-search",
|
||||
"name": "Document Embedding & Search",
|
||||
"description": "Create embeddings from documents and perform similarity search",
|
||||
"nodes": [
|
||||
{
|
||||
"id": "input-2",
|
||||
"type": "dataInput",
|
||||
"position": { "x": 100, "y": 200 },
|
||||
"data": {
|
||||
"id": "input-2",
|
||||
"type": "dataInput",
|
||||
"label": "Document Text",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"dataType": "text",
|
||||
"defaultValue": "This is a sample document about artificial intelligence and machine learning."
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "embedding-1",
|
||||
"type": "embeddingGenerator",
|
||||
"position": { "x": 300, "y": 200 },
|
||||
"data": {
|
||||
"id": "embedding-1",
|
||||
"type": "embeddingGenerator",
|
||||
"label": "Embedding Generator",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"model": "text-embedding-ada-002",
|
||||
"dimensions": 1536
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "search-1",
|
||||
"type": "similaritySearch",
|
||||
"position": { "x": 500, "y": 200 },
|
||||
"data": {
|
||||
"id": "search-1",
|
||||
"type": "similaritySearch",
|
||||
"label": "Similarity Search",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"vectorStore": "pinecone",
|
||||
"topK": 5,
|
||||
"threshold": 0.8
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "output-2",
|
||||
"type": "dataOutput",
|
||||
"position": { "x": 700, "y": 200 },
|
||||
"data": {
|
||||
"id": "output-2",
|
||||
"type": "dataOutput",
|
||||
"label": "Search Results",
|
||||
"status": "idle",
|
||||
"config": {
|
||||
"format": "json",
|
||||
"filename": "search_results.json"
|
||||
},
|
||||
"inputs": [],
|
||||
"outputs": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"edges": [
|
||||
{
|
||||
"id": "edge-4",
|
||||
"source": "input-2",
|
||||
"target": "embedding-1"
|
||||
},
|
||||
{
|
||||
"id": "edge-5",
|
||||
"source": "embedding-1",
|
||||
"target": "search-1"
|
||||
},
|
||||
{
|
||||
"id": "edge-6",
|
||||
"source": "search-1",
|
||||
"target": "output-2"
|
||||
}
|
||||
],
|
||||
"createdAt": "2024-01-01T00:00:00.000Z",
|
||||
"updatedAt": "2024-01-01T00:00:00.000Z"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Open-source agent workflow builder using React Flow and AI"/><title>Agent Workflow Builder</title><script defer="defer" src="/static/js/main.ee8320d2.js"></script><link href="/static/css/main.8e4e3c66.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,2 +0,0 @@
|
||||
"use strict";(self.webpackChunkagent_workflow_builder=self.webpackChunkagent_workflow_builder||[]).push([[264],{264:(e,l,u)=>{u.d(l,{default:()=>k});const k=(0,u(821).R)()}}]);
|
||||
//# sourceMappingURL=264.8f1d68b5.chunk.js.map
|
||||
@@ -1 +0,0 @@
|
||||
{"version":3,"file":"static/js/264.8f1d68b5.chunk.js","mappings":"qJAGA,SAAeA,E,OAAAA,I","sources":["../node_modules/@mendable/firecrawl-js/dist/package-G6W4FIEC.js"],"sourcesContent":["import {\n require_package\n} from \"./chunk-GWA53VW4.js\";\nexport default require_package();\n"],"names":["require_package"],"sourceRoot":""}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,59 +0,0 @@
|
||||
/**
|
||||
* @license React
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* react-jsx-runtime.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim.production.js
|
||||
*
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim/with-selector.production.js
|
||||
*
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user