tailtester 0.2.5
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.
- package/README.md +20 -0
- package/index.js +10 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# tailtester
|
|
2
|
+
|
|
3
|
+
**The pytest for AI agents.**
|
|
4
|
+
|
|
5
|
+
This is a namespace placeholder matching the PyPI package name `tailtester`. The primary npm package is [`tailtest`](https://www.npmjs.com/package/tailtest).
|
|
6
|
+
|
|
7
|
+
## Install (Python)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install tailtester
|
|
11
|
+
tailtest scan .
|
|
12
|
+
tailtest run
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Links
|
|
16
|
+
|
|
17
|
+
- Website: https://tailtest.com
|
|
18
|
+
- GitHub: https://github.com/avansaber/tailtest
|
|
19
|
+
- PyPI: https://pypi.org/project/tailtester
|
|
20
|
+
- License: Apache 2.0
|
package/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// tailtester - The pytest for AI agents
|
|
2
|
+
// This is a namespace placeholder matching the PyPI package name.
|
|
3
|
+
// The primary npm package is "tailtest".
|
|
4
|
+
// Visit https://tailtest.com for more information.
|
|
5
|
+
|
|
6
|
+
throw new Error(
|
|
7
|
+
"tailtester is a namespace placeholder matching the PyPI package name.\n" +
|
|
8
|
+
"The primary npm package is 'tailtest'.\n" +
|
|
9
|
+
"Visit https://tailtest.com for updates."
|
|
10
|
+
);
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tailtester",
|
|
3
|
+
"version": "0.2.5",
|
|
4
|
+
"description": "The pytest for AI agents. https://tailtest.com (PyPI package name)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": "AvanSaber Inc.",
|
|
8
|
+
"homepage": "https://tailtest.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/avansaber/tailtest"
|
|
12
|
+
},
|
|
13
|
+
"keywords": ["ai", "agents", "testing", "llm", "evaluation", "tailtester", "tailtest"]
|
|
14
|
+
}
|