@neuledge/graph 0.3.3 → 0.3.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 +3 -2
- package/bin/cli.js +1 -1
- package/package.json +20 -16
package/README.md
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
# @neuledge/graph
|
|
4
4
|
|
|
5
|
+
### The Semantic Data Layer for AI Agents
|
|
6
|
+
|
|
7
|
+
**Ground your LLM in real-world facts with zero API configuration.**
|
|
5
8
|
|
|
6
|
-
**Stop building API integrations. Connect your LLM to live data in one line of code.**
|
|
7
9
|
|
|
8
10
|
[](https://www.npmjs.com/package/@neuledge/graph)
|
|
9
11
|
[](https://github.com/neuledge/graph/blob/main/LICENSE)
|
|
@@ -46,7 +48,6 @@ const graph = new NeuledgeGraph();
|
|
|
46
48
|
|
|
47
49
|
// 2. Pass the lookup tool to your AI agent
|
|
48
50
|
const agent = new Agent({
|
|
49
|
-
model: 'claude-sonnet-4-5',
|
|
50
51
|
tools: { lookup: tool(graph.lookup) },
|
|
51
52
|
});
|
|
52
53
|
|
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,28 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuledge/graph",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.5",
|
|
4
|
+
"description": "Real-time Knowledge Graph for AI Agents. Ground LLMs with live weather, stocks, and currency data. Structured tool-calling in <100ms.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"llm",
|
|
7
|
-
"ai",
|
|
8
6
|
"knowledge-graph",
|
|
9
|
-
"
|
|
10
|
-
"weather-api",
|
|
11
|
-
"stock-api",
|
|
12
|
-
"currency-exchange",
|
|
7
|
+
"graph-rag",
|
|
13
8
|
"ai-agents",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"vercel-ai",
|
|
17
|
-
"langchain",
|
|
9
|
+
"tool-calling",
|
|
10
|
+
"llm-grounding",
|
|
18
11
|
"real-time-data",
|
|
19
12
|
"structured-data",
|
|
20
|
-
"
|
|
13
|
+
"hallucination-reduction",
|
|
14
|
+
"vercel-ai-sdk",
|
|
15
|
+
"langchain",
|
|
21
16
|
"function-calling",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
17
|
+
"agentic-workflows",
|
|
18
|
+
"weather-api",
|
|
19
|
+
"stock-api",
|
|
20
|
+
"currency-exchange"
|
|
25
21
|
],
|
|
22
|
+
"homepage": "https://neuledge.com/docs/graph",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/neuledge/graph.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/neuledge/graph/issues"
|
|
29
|
+
},
|
|
26
30
|
"main": "dist/index.js",
|
|
27
31
|
"types": "dist/index.d.ts",
|
|
28
32
|
"type": "module",
|