@cascadeflow/n8n-nodes-cascadeflow 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/dist/nodes/CascadeFlowAgent/CascadeFlowAgent.node.js +126 -124
- package/dist/nodes/LmChatCascadeFlow/LmChatCascadeFlow.node.js +117 -115
- package/dist/nodes/LmChatCascadeFlow/cascade-metadata.js +1 -1
- package/dist/nodes/harness/harness.js +1 -0
- package/dist/nodes/harness/index.js +1 -0
- package/dist/nodes/harness/pricing.js +1 -0
- package/package.json +5 -7
package/README.md
CHANGED
|
@@ -434,7 +434,14 @@ Make sure you've connected an AI Chat Model to the **Verifier** input port.
|
|
|
434
434
|
|
|
435
435
|
## Version History
|
|
436
436
|
|
|
437
|
-
### v1.
|
|
437
|
+
### v1.3.0 (Latest)
|
|
438
|
+
|
|
439
|
+
- **PreRouter integration**: Complexity-based routing now uses `PreRouter` with structured `RoutingDecision` (strategy, confidence, metadata) instead of hardcoded branching
|
|
440
|
+
- **Domain-aware routing context**: PreRouter receives detected domain and domain config for richer routing decisions
|
|
441
|
+
- **Router metadata**: `direct_verifier` responses include `router: 'pre-router' | 'complexity'` in cascade metadata
|
|
442
|
+
- **Moved `@langchain/core` to peerDependencies**: Avoids duplicate installs since n8n provides it at runtime
|
|
443
|
+
|
|
444
|
+
### v1.0.0
|
|
438
445
|
|
|
439
446
|
- **CascadeFlow Agent → standalone node**: Converted from `supplyData()` sub-node to `execute()` node with main in/out
|
|
440
447
|
- **Memory support**: Added `ai_memory` input for conversation history (Window Buffer Memory, etc.)
|