pdrift 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.
pdrift-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: pdrift
3
+ Version: 0.0.1
4
+ Summary: Snapshot regression testing for LLM prompts - catch prompt drift before production. Under active development.
5
+ Author: Mithun
6
+ License-Expression: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ \# pdrift
11
+
12
+
13
+
14
+ Snapshot regression testing for LLM prompts. Change a prompt or model, instantly see which outputs changed meaningfully - like jest snapshots + git diff for LLMs.
15
+
16
+
17
+
18
+ v0.0.1 is a placeholder - first working release coming soon.
19
+
pdrift-0.0.1/README.md ADDED
@@ -0,0 +1,10 @@
1
+ \# pdrift
2
+
3
+
4
+
5
+ Snapshot regression testing for LLM prompts. Change a prompt or model, instantly see which outputs changed meaningfully - like jest snapshots + git diff for LLMs.
6
+
7
+
8
+
9
+ v0.0.1 is a placeholder - first working release coming soon.
10
+
@@ -0,0 +1,12 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pdrift"
7
+ version = "0.0.1"
8
+ description = "Snapshot regression testing for LLM prompts - catch prompt drift before production. Under active development."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "Mithun" }]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"