lqh 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.
lqh-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: lqh
3
+ Version: 0.0.1
4
+ Summary: Liquid Harness – A fine-tuning tool for foundation models. Coming soon.
5
+ Project-URL: Homepage, https://liquid.ai
6
+ Author-email: Your Name <you@example.com>
7
+ License-Expression: Apache-2.0
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # lqh – Liquid Harness
15
+
16
+ A fine-tuning tool for foundation models by [Liquid AI](https://liquid.ai).
17
+
18
+ **This package is under active development. Stay tuned.**
19
+
20
+ ## Installation
21
+
22
+ ```bash
23
+ pip install lqh
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ ```bash
29
+ lqh --help
30
+ ```
lqh-0.0.1/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # lqh – Liquid Harness
2
+
3
+ A fine-tuning tool for foundation models by [Liquid AI](https://liquid.ai).
4
+
5
+ **This package is under active development. Stay tuned.**
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install lqh
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ lqh --help
17
+ ```
@@ -0,0 +1,3 @@
1
+ """Liquid Harness (lqh) – A fine-tuning tool for foundation models."""
2
+
3
+ __version__ = "0.0.1"
lqh-0.0.1/lqh/cli.py ADDED
@@ -0,0 +1,10 @@
1
+ """Liquid Harness CLI."""
2
+
3
+
4
+ def main():
5
+ print("lqh (Liquid Harness) v0.0.1 – coming soon.")
6
+ print("A fine-tuning tool for foundation models.")
7
+
8
+
9
+ if __name__ == "__main__":
10
+ main()
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "lqh"
7
+ version = "0.0.1"
8
+ description = "Liquid Harness – A fine-tuning tool for foundation models. Coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "Apache-2.0"
12
+ authors = [
13
+ { name = "Your Name", email = "you@example.com" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://liquid.ai"
23
+
24
+ [project.scripts]
25
+ lqh = "lqh.cli:main"