+ {/* No target handle because we don't accept upstream data */}
+
+ {data?.label || "Raw Base64 Image Upload"}
+
+
+
+
+ {data?.content || "Upload a JPG/PNG, store only the raw base64 in ValueBus."}
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default {
+ type: "ImageUploadNode_RawBase64", // Unique ID for the node type
+ label: "Upload Image",
+ description: `
+A node to upload an image (JPG/PNG) and store it in base64 format for later use downstream.
+`.trim(),
+ content: "Upload an image, output only the raw base64 string.",
+ component: ImageUploadNode
+};
diff --git a/Launch-API-Collector-Agent.ps1 b/Launch-Agent.ps1
similarity index 98%
rename from Launch-API-Collector-Agent.ps1
rename to Launch-Agent.ps1
index 38b35b5..6a3f876 100644
--- a/Launch-API-Collector-Agent.ps1
+++ b/Launch-Agent.ps1
@@ -81,6 +81,5 @@ Run-Step "Install Python Dependencies for Collector Agent" {
Push-Location $venvFolder
Write-Host "`nLaunching Borealis API Collector Agent..." -ForegroundColor Green
Write-Host "===================================================================================="
-Write-Host "$($symbols.Running) Starting Agent..." -NoNewline
python "Agent\api-collector-agent.py"
Pop-Location
diff --git a/requirements.txt b/requirements.txt
index cc25e92..6ee9873 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -18,6 +18,4 @@ numpy # Numerical operations
opencv-python # Computer vision processing
pytesseract # OCR engine
easyocr # Deep-learning-based OCR
-Pillow # Image processing
-
-# API Collector Agent Dependencies
\ No newline at end of file
+Pillow # Image processing
\ No newline at end of file