network-ai 3.2.3 → 3.2.5
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 +1 -1
- package/package.json +1 -1
- package/scripts/blackboard.py +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**The plug-and-play AI agent orchestrator for TypeScript/Node.js -- connect 12 agent frameworks with zero glue code**
|
|
4
4
|
|
|
5
|
-
[](https://github.com/jovanSAPFIONEER/Network-AI/releases)
|
|
6
6
|
[](https://clawhub.ai/skills/network-ai)
|
|
7
7
|
[](https://nodejs.org)
|
|
8
8
|
[](https://typescriptlang.org)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - plug-and-play multi-agent coordination with 12 frameworks (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw). Built-in security, swarm intelligence, and agentic workflow patterns.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
package/scripts/blackboard.py
CHANGED
|
@@ -315,7 +315,7 @@ Last Updated: {datetime.now(timezone.utc).isoformat()}
|
|
|
315
315
|
Only allows alphanumeric characters, hyphens, underscores, and dots.
|
|
316
316
|
Rejects any path separators or parent directory references.
|
|
317
317
|
"""
|
|
318
|
-
if not change_id
|
|
318
|
+
if not change_id:
|
|
319
319
|
raise ValueError("change_id must be a non-empty string")
|
|
320
320
|
# Strip whitespace
|
|
321
321
|
sanitized = change_id.strip()
|