spnl 0.10.0__cp311-cp311-manylinux_2_28_x86_64.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.
spnl/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from .spnl import *
2
+
3
+ __doc__ = spnl.__doc__
4
+ if hasattr(spnl, "__all__"):
5
+ __all__ = spnl.__all__
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: spnl
3
+ Version: 0.10.0
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ License-Expression: Apache-2.0
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
+
11
+ # Span Queries
12
+
13
+ What if we had a way to plan and optimize GenAI like we do for
14
+ [SQL](https://en.wikipedia.org/wiki/SQL)?
15
+
16
+ A **Span Query** is a declarative way to specify which portions of a
17
+ generative AI (GenAI) program should be **run directly on model
18
+ serving components**. As with
19
+ [SQL](https://en.wikipedia.org/wiki/SQL), this declarative structure
20
+ is safe to run on the backend and provides a clean starting point for
21
+ optimization. Also like SQL, some GenAI programs will be entirely
22
+ expressible as queries, though most will be expressed as the
23
+ programmatic interludes around the declarative queries.
24
+
@@ -0,0 +1,5 @@
1
+ spnl-0.10.0.dist-info/METADATA,sha256=kje3AmX2Qk668YEUNr6eyEtREdhpINUazKraGGOkq10,962
2
+ spnl-0.10.0.dist-info/WHEEL,sha256=R0MvOlpkBaBgVtksUhF4OHgPoBPgUcpl5udVyIiF-xQ,109
3
+ spnl/__init__.py,sha256=19ZnNNOxrTFtN7h_nXS6wAhim1XejSiHKkfJlZeGa9U,99
4
+ spnl/spnl.cpython-311-x86_64-linux-gnu.so,sha256=wxR1Ot1N0yg2C1zmH9Q-ScmLJXsKsIDY0PkI4ifmPi0,9958824
5
+ spnl-0.10.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.10.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-manylinux_2_28_x86_64