promptfoo 0.1.0__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.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: promptfoo
3
+ Version: 0.1.0
4
+ Summary: LLM evals and red teaming
5
+ Home-page: https://github.com/promptfoo/promptfoo
6
+ Author: Ian Webster
7
+ Author-email: ian@promptfoo.dev
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+
14
+ # promptfoo - LLM evals and red teaming
15
+
16
+ This is a Python wrapper for the [promptfoo](https://www.promptfoo.dev) CLI.
17
+
18
+ Refer to the [website](https://www.promptfoo.dev/) and the [GitHub](https://github.com/typpo/promptfoo) for more information.
@@ -0,0 +1,5 @@
1
+ # promptfoo - LLM evals and red teaming
2
+
3
+ This is a Python wrapper for the [promptfoo](https://www.promptfoo.dev) CLI.
4
+
5
+ Refer to the [website](https://www.promptfoo.dev/) and the [GitHub](https://github.com/typpo/promptfoo) for more information.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="promptfoo",
5
+ version="0.1.0",
6
+ packages=find_packages(where="src"),
7
+ package_dir={"": "src"},
8
+ entry_points={
9
+ "console_scripts": [
10
+ "promptfoo=promptfoo.main:main",
11
+ ],
12
+ },
13
+ author="Ian Webster",
14
+ author_email="ian@promptfoo.dev",
15
+ description="LLM evals and red teaming",
16
+ long_description=open("README.md").read(),
17
+ long_description_content_type="text/markdown",
18
+ url="https://github.com/promptfoo/promptfoo",
19
+ classifiers=[
20
+ "Programming Language :: Python :: 3",
21
+ "License :: OSI Approved :: MIT License",
22
+ "Operating System :: OS Independent",
23
+ ],
24
+ python_requires=">=3.6",
25
+ )
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: promptfoo
3
+ Version: 0.1.0
4
+ Summary: LLM evals and red teaming
5
+ Home-page: https://github.com/promptfoo/promptfoo
6
+ Author: Ian Webster
7
+ Author-email: ian@promptfoo.dev
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+
14
+ # promptfoo - LLM evals and red teaming
15
+
16
+ This is a Python wrapper for the [promptfoo](https://www.promptfoo.dev) CLI.
17
+
18
+ Refer to the [website](https://www.promptfoo.dev/) and the [GitHub](https://github.com/typpo/promptfoo) for more information.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ src/promptfoo.egg-info/PKG-INFO
4
+ src/promptfoo.egg-info/SOURCES.txt
5
+ src/promptfoo.egg-info/dependency_links.txt
6
+ src/promptfoo.egg-info/entry_points.txt
7
+ src/promptfoo.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ promptfoo = promptfoo.main:main