spnl 0.7.0__cp310-cp310-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 +5 -0
- spnl/spnl.cpython-310-x86_64-linux-gnu.so +0 -0
- spnl-0.7.0.dist-info/METADATA +24 -0
- spnl-0.7.0.dist-info/RECORD +5 -0
- spnl-0.7.0.dist-info/WHEEL +4 -0
spnl/__init__.py
ADDED
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: spnl
|
|
3
|
+
Version: 0.7.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.7.0.dist-info/METADATA,sha256=bdPMXw53jMItMt8_c447Tpx2WWqucs-CSJQZpxmRbzU,961
|
|
2
|
+
spnl-0.7.0.dist-info/WHEEL,sha256=qLFECwVaxv8wtS_KMTIqdblx4cq_iInPAAuPyVZ_P1U,108
|
|
3
|
+
spnl/__init__.py,sha256=19ZnNNOxrTFtN7h_nXS6wAhim1XejSiHKkfJlZeGa9U,99
|
|
4
|
+
spnl/spnl.cpython-310-x86_64-linux-gnu.so,sha256=947nj6lfStP6dmufAjZv3vX2CErUIpc4j-erOVR3S4c,9698648
|
|
5
|
+
spnl-0.7.0.dist-info/RECORD,,
|