droste 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.
droste-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: droste
3
+ Version: 0.0.1
4
+ Summary: Droste — a recursive language model harness for your data. Full release coming soon.
5
+ Author: Tensor Systems
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Droste
11
+
12
+ A recursive language model harness for your data — treat unbounded context as
13
+ a REPL variable, not a transcript. The engine behind ModelRelay's RLM runtime.
14
+
15
+ Open-source release in preparation. This placeholder holds the name.
droste-0.0.1/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Droste
2
+
3
+ A recursive language model harness for your data — treat unbounded context as
4
+ a REPL variable, not a transcript. The engine behind ModelRelay's RLM runtime.
5
+
6
+ Open-source release in preparation. This placeholder holds the name.
@@ -0,0 +1,15 @@
1
+ [project]
2
+ name = "droste"
3
+ version = "0.0.1"
4
+ description = "Droste — a recursive language model harness for your data. Full release coming soon."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ authors = [{ name = "Tensor Systems" }]
8
+ license = { text = "Apache-2.0" }
9
+
10
+ [build-system]
11
+ requires = ["hatchling"]
12
+ build-backend = "hatchling.build"
13
+
14
+ [tool.hatch.build.targets.wheel]
15
+ packages = ["src/droste"]
@@ -0,0 +1,6 @@
1
+ """Droste — a recursive language model harness for your data.
2
+
3
+ The full engine is being prepared for open-source release. Watch this space.
4
+ """
5
+
6
+ __version__ = "0.0.1"