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.
- promptfoo-0.1.0/PKG-INFO +18 -0
- promptfoo-0.1.0/README.md +5 -0
- promptfoo-0.1.0/setup.cfg +4 -0
- promptfoo-0.1.0/setup.py +25 -0
- promptfoo-0.1.0/src/promptfoo.egg-info/PKG-INFO +18 -0
- promptfoo-0.1.0/src/promptfoo.egg-info/SOURCES.txt +7 -0
- promptfoo-0.1.0/src/promptfoo.egg-info/dependency_links.txt +1 -0
- promptfoo-0.1.0/src/promptfoo.egg-info/entry_points.txt +2 -0
- promptfoo-0.1.0/src/promptfoo.egg-info/top_level.txt +1 -0
promptfoo-0.1.0/PKG-INFO
ADDED
|
@@ -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.
|
promptfoo-0.1.0/setup.py
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|