tessera-hypernetwork 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: tessera-hypernetwork
3
+ Version: 0.1.0
4
+ Summary: Generate per-session LoRA adapters for inference tasks
5
+ Author: Tessera Contributors
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/theoddden/Tessera
8
+ Project-URL: Repository, https://github.com/theoddden/Tessera
9
+ Project-URL: Issues, https://github.com/theoddden/Tessera/issues
10
+ Keywords: lora,peft,hypernetwork,machine-learning,nlp
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: fastapi==0.104.1
23
+ Requires-Dist: uvicorn[standard]==0.24.0
24
+ Requires-Dist: pydantic==2.5.0
25
+ Requires-Dist: torch==2.1.0
26
+ Requires-Dist: safetensors==0.4.1
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest>=7.0; extra == "dev"
29
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
30
+
31
+ # Tessera Hypernetwork
32
+
33
+ Generate per-session LoRA adapters for inference tasks.
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ pip install tessera-hypernetwork
39
+ ```
40
+
41
+ ## Usage
42
+
43
+ Start the hypernetwork server:
44
+
45
+ ```bash
46
+ python -m tessera_hypernetwork.server
47
+ ```
48
+
49
+ Or use the CLI:
50
+
51
+ ```bash
52
+ tessera-hypernetwork serve
53
+ ```
54
+
55
+ ## API
56
+
57
+ The hypernetwork service provides a FastAPI server with the following endpoints:
58
+
59
+ - `POST /v1/generate` - Generate a LoRA adapter for a given prompt
60
+ - `GET /health` - Health check endpoint
61
+
62
+ ## Development
63
+
64
+ Install development dependencies:
65
+
66
+ ```bash
67
+ pip install tessera-hypernetwork[dev]
68
+ ```
69
+
70
+ Run tests:
71
+
72
+ ```bash
73
+ pytest
74
+ ```
75
+
76
+ ## License
77
+
78
+ Apache-2.0
@@ -0,0 +1,4 @@
1
+ tessera_hypernetwork-0.1.0.dist-info/METADATA,sha256=00PjtKUFjPGxLmPSr4Gxe8_GhpANbn1hlqBCbI592VM,1873
2
+ tessera_hypernetwork-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
3
+ tessera_hypernetwork-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ tessera_hypernetwork-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+