promptlibz 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,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: promptlibz
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+
8
+ # promptlib
9
+ 一个prompt仓库
@@ -0,0 +1,6 @@
1
+ promptllm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ promptllm/main.py,sha256=kEpFRwpycH6kh51dac8cEXTtf9Iui5LjSNZ2zYhw-aA,87
3
+ promptlibz-0.1.0.dist-info/METADATA,sha256=HQc5-wRMEaJkq2Sh70Fq-OnBn5mjSULQDxJQxQW0nmw,186
4
+ promptlibz-0.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
5
+ promptlibz-0.1.0.dist-info/top_level.txt,sha256=DEdJuDhs7OvndkdQhC4r5bCXmM5_41ETDeIuHBF1dFQ,10
6
+ promptlibz-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (78.1.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ promptllm
promptllm/__init__.py ADDED
File without changes
promptllm/main.py ADDED
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from promptlib!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()