n2-qln 3.3.1 β 3.3.2
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.ko.md +4 -1
- package/README.md +8 -5
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
|
|
44
44
|
π **μ΄μ€ μ€ν** β λꡬλ₯Ό λ‘컬 ν¨μ λλ HTTP μλν¬μΈνΈλ‘ μ€ν. νΈλ€λ¬λ₯Ό μ§μ λ±λ‘νκ±°λ μ격 μλΉμ€λ₯Ό μ°κ²°. νΌν©λ κ°λ₯.
|
|
45
45
|
|
|
46
|
+
π **Provider μλ μΈλ±μ±** *(v3.3)* β `providers/`μ JSON λ§€λνμ€νΈλ₯Ό λ£μΌλ©΄ λΆν
μ μλ λ±λ‘. μ½λ μμ λΆνμ, μλ `create` νΈμΆ λΆνμ. λ©±λ±μ± 보μ₯ λ° μλ¬ κ²©λ¦¬.
|
|
47
|
+
|
|
46
48
|
ποΈ **10,000κ° μ΄μ νμ₯** β μΉ΄ν
κ³ λ¦¬λ³ centroid hierarchy νν°μ
λ. 100κ° ~1ms, 1,000κ° ~3ms, 10,000κ° ~5ms.
|
|
47
49
|
|
|
48
50
|
π **λ²μ© MCP** β Claude Desktop, Cursor, n2-soul λλ λͺ¨λ MCP νΈν ν΄λΌμ΄μΈνΈμμ λμ. νμ€ stdio μ μ‘.
|
|
@@ -398,7 +400,8 @@ n2-qln/
|
|
|
398
400
|
β βββ router.js # 3λ¨κ³ κ²μ μμ§
|
|
399
401
|
β βββ vector-index.js # Float32 λ²‘ν° μΈλ±μ€ (centroid hierarchy)
|
|
400
402
|
β βββ embedding.js # Ollama μλ² λ© ν΄λΌμ΄μΈνΈ (nomic-embed-text)
|
|
401
|
-
β
|
|
403
|
+
β βββ executor.js # HTTP/ν¨μ λꡬ μ€νκΈ°
|
|
404
|
+
β βββ provider-loader.js # λΆν
μ providers/*.json μλ μΈλ±μ±
|
|
402
405
|
βββ tools/
|
|
403
406
|
β βββ qln-call.js # ν΅ν© MCP λꡬ (search/exec/create/update/delete)
|
|
404
407
|
βββ providers/ # λꡬ provider λ§€λνμ€νΈ (μΌκ΄ λ±λ‘μ©)
|
package/README.md
CHANGED
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
|
|
44
44
|
π **Dual execution** β Tools can run as local functions or HTTP endpoints. Register a handler directly, or point to a remote service. Mix and match.
|
|
45
45
|
|
|
46
|
+
π **Provider auto-indexing** *(v3.3)* β Drop a JSON manifest in `providers/` and tools are auto-registered at boot. No code changes, no manual `create` calls. Idempotent and error-isolated.
|
|
47
|
+
|
|
46
48
|
ποΈ **Scales to 10,000+** β Centroid hierarchy partitions tools by category, then searches within partitions. 100 tools ~1ms, 1,000 ~3ms, 10,000 ~5ms.
|
|
47
49
|
|
|
48
50
|
π **Universal MCP** β Works with Claude Desktop, Cursor, n2-soul, or any MCP-compatible client. Standard stdio transport.
|
|
@@ -414,11 +416,12 @@ n2-qln/
|
|
|
414
416
|
β βββ store.js # SQLite storage engine (sql.js WASM)
|
|
415
417
|
β βββ schema.js # Tool schema normalization + search text builder
|
|
416
418
|
β βββ validator.js # Enforced validation (name, description, category)
|
|
417
|
-
β βββ registry.js
|
|
418
|
-
β βββ router.js
|
|
419
|
-
β βββ vector-index.js
|
|
420
|
-
β βββ embedding.js
|
|
421
|
-
β
|
|
419
|
+
β βββ registry.js # Tool CRUD + usage tracking + embedding cache
|
|
420
|
+
β βββ router.js # 3-stage parallel search engine
|
|
421
|
+
β βββ vector-index.js # Float32 vector index with centroid hierarchy
|
|
422
|
+
β βββ embedding.js # Ollama embedding client (nomic-embed-text)
|
|
423
|
+
β βββ executor.js # HTTP/function tool executor
|
|
424
|
+
β βββ provider-loader.js # Auto-index providers/*.json at boot
|
|
422
425
|
βββ tools/
|
|
423
426
|
β βββ qln-call.js # Unified MCP tool (search/exec/create/update/delete)
|
|
424
427
|
βββ providers/ # Tool provider manifests (for bulk registration)
|