lodedb 0.0.1__tar.gz
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.
- lodedb-0.0.1/PKG-INFO +28 -0
- lodedb-0.0.1/README.md +11 -0
- lodedb-0.0.1/lodedb/__init__.py +7 -0
- lodedb-0.0.1/pyproject.toml +33 -0
lodedb-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lodedb
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: LodeDB — a local-first, embedded vector database for agent memory and semantic search (name reserved; first release coming soon).
|
|
5
|
+
Project-URL: Homepage, https://github.com/Egoist-Machines/LodeDB
|
|
6
|
+
Project-URL: Repository, https://github.com/Egoist-Machines/LodeDB
|
|
7
|
+
Author: Egoist Machines
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Keywords: agent-memory,apple-silicon,embeddings,local-first,mlx,rag,semantic-search,vector-database
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Database
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# LodeDB
|
|
19
|
+
|
|
20
|
+
A **local-first, embedded vector database** for agent memory and semantic search —
|
|
21
|
+
runnable on a laptop, Apple-Silicon–accelerated, with your data staying on your
|
|
22
|
+
machine.
|
|
23
|
+
|
|
24
|
+
> **This is a name-reservation placeholder.** The first real release is coming soon.
|
|
25
|
+
|
|
26
|
+
- Project: https://github.com/Egoist-Machines/LodeDB
|
|
27
|
+
|
|
28
|
+
Licensed under Apache-2.0.
|
lodedb-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# LodeDB
|
|
2
|
+
|
|
3
|
+
A **local-first, embedded vector database** for agent memory and semantic search —
|
|
4
|
+
runnable on a laptop, Apple-Silicon–accelerated, with your data staying on your
|
|
5
|
+
machine.
|
|
6
|
+
|
|
7
|
+
> **This is a name-reservation placeholder.** The first real release is coming soon.
|
|
8
|
+
|
|
9
|
+
- Project: https://github.com/Egoist-Machines/LodeDB
|
|
10
|
+
|
|
11
|
+
Licensed under Apache-2.0.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lodedb"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "LodeDB — a local-first, embedded vector database for agent memory and semantic search (name reserved; first release coming soon)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Egoist Machines" }]
|
|
13
|
+
keywords = [
|
|
14
|
+
"vector-database",
|
|
15
|
+
"embeddings",
|
|
16
|
+
"rag",
|
|
17
|
+
"agent-memory",
|
|
18
|
+
"local-first",
|
|
19
|
+
"semantic-search",
|
|
20
|
+
"apple-silicon",
|
|
21
|
+
"mlx",
|
|
22
|
+
]
|
|
23
|
+
classifiers = [
|
|
24
|
+
"Development Status :: 1 - Planning",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Topic :: Database",
|
|
28
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/Egoist-Machines/LodeDB"
|
|
33
|
+
Repository = "https://github.com/Egoist-Machines/LodeDB"
|