piramid 0.1.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.
Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +11 -0
  3. package/package.json +7 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ future todo
package/index.js ADDED
@@ -0,0 +1,11 @@
1
+ // Piramid SDK - Vector database for agentic applications
2
+
3
+ /**
4
+ * Minimal placeholder function
5
+ * @returns {string} Package name
6
+ */
7
+ function hello() {
8
+ return "Piramid vector database SDK";
9
+ }
10
+
11
+ module.exports = { hello };
package/package.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "piramid",
3
+ "version": "0.1.0",
4
+ "description": "Vector database for agentic applications.",
5
+ "main": "index.js",
6
+ "license": "Apache-2.0"
7
+ }