evidence-check 0.3.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.
- evidence_check-0.3.0/PKG-INFO +62 -0
- evidence_check-0.3.0/README.md +38 -0
- evidence_check-0.3.0/evidence_check.egg-info/PKG-INFO +62 -0
- evidence_check-0.3.0/evidence_check.egg-info/SOURCES.txt +7 -0
- evidence_check-0.3.0/evidence_check.egg-info/dependency_links.txt +1 -0
- evidence_check-0.3.0/evidence_check.egg-info/requires.txt +1 -0
- evidence_check-0.3.0/evidence_check.egg-info/top_level.txt +1 -0
- evidence_check-0.3.0/pyproject.toml +34 -0
- evidence_check-0.3.0/setup.cfg +4 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evidence-check
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Alias for pyligent-agents, which provides the evidence-check command.
|
|
5
|
+
Author: Pyligent
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Pyligent/pyligent-agents
|
|
8
|
+
Project-URL: Documentation, https://github.com/Pyligent/pyligent-agents/blob/main/docs/GETTING-STARTED.md
|
|
9
|
+
Project-URL: Issues, https://github.com/Pyligent/pyligent-agents/issues
|
|
10
|
+
Keywords: extraction,citations,evidence,verification,documents
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: pyligent-agents>=0.3.0
|
|
24
|
+
|
|
25
|
+
# evidence-check
|
|
26
|
+
|
|
27
|
+
This is an alias. It installs
|
|
28
|
+
[`pyligent-agents`](https://pypi.org/project/pyligent-agents/), which provides the
|
|
29
|
+
`evidence-check` command.
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install evidence-check
|
|
33
|
+
evidence-check contract.pdf extraction.json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Both of these install the same software:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install evidence-check
|
|
40
|
+
pip install pyligent-agents
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## What the command does
|
|
44
|
+
|
|
45
|
+
It reports which values in an extraction the source document does not support. It
|
|
46
|
+
needs no API key, no network and no ground-truth labels.
|
|
47
|
+
|
|
48
|
+
| Finding | Meaning |
|
|
49
|
+
|---|---|
|
|
50
|
+
| `FABRICATED_EVIDENCE` | the citation does not appear in the document |
|
|
51
|
+
| `SILENT_REPAIR` | the citation appears, but states a value other than the one extracted |
|
|
52
|
+
| `PLACEHOLDER_VALUE` | the value is `TBD`, `N/A` or similar |
|
|
53
|
+
|
|
54
|
+
Exit codes: `0` no findings, `1` findings to review, `2` the run could not happen.
|
|
55
|
+
Exit 1 is a result, not a failure.
|
|
56
|
+
|
|
57
|
+
This confirms evidential support, not accuracy. A citation may be present, verbatim,
|
|
58
|
+
and still cite the wrong clause.
|
|
59
|
+
|
|
60
|
+
Documentation and source: **https://github.com/Pyligent/pyligent-agents**
|
|
61
|
+
|
|
62
|
+
Apache-2.0.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# evidence-check
|
|
2
|
+
|
|
3
|
+
This is an alias. It installs
|
|
4
|
+
[`pyligent-agents`](https://pypi.org/project/pyligent-agents/), which provides the
|
|
5
|
+
`evidence-check` command.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install evidence-check
|
|
9
|
+
evidence-check contract.pdf extraction.json
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Both of these install the same software:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install evidence-check
|
|
16
|
+
pip install pyligent-agents
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## What the command does
|
|
20
|
+
|
|
21
|
+
It reports which values in an extraction the source document does not support. It
|
|
22
|
+
needs no API key, no network and no ground-truth labels.
|
|
23
|
+
|
|
24
|
+
| Finding | Meaning |
|
|
25
|
+
|---|---|
|
|
26
|
+
| `FABRICATED_EVIDENCE` | the citation does not appear in the document |
|
|
27
|
+
| `SILENT_REPAIR` | the citation appears, but states a value other than the one extracted |
|
|
28
|
+
| `PLACEHOLDER_VALUE` | the value is `TBD`, `N/A` or similar |
|
|
29
|
+
|
|
30
|
+
Exit codes: `0` no findings, `1` findings to review, `2` the run could not happen.
|
|
31
|
+
Exit 1 is a result, not a failure.
|
|
32
|
+
|
|
33
|
+
This confirms evidential support, not accuracy. A citation may be present, verbatim,
|
|
34
|
+
and still cite the wrong clause.
|
|
35
|
+
|
|
36
|
+
Documentation and source: **https://github.com/Pyligent/pyligent-agents**
|
|
37
|
+
|
|
38
|
+
Apache-2.0.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evidence-check
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Alias for pyligent-agents, which provides the evidence-check command.
|
|
5
|
+
Author: Pyligent
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Pyligent/pyligent-agents
|
|
8
|
+
Project-URL: Documentation, https://github.com/Pyligent/pyligent-agents/blob/main/docs/GETTING-STARTED.md
|
|
9
|
+
Project-URL: Issues, https://github.com/Pyligent/pyligent-agents/issues
|
|
10
|
+
Keywords: extraction,citations,evidence,verification,documents
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: pyligent-agents>=0.3.0
|
|
24
|
+
|
|
25
|
+
# evidence-check
|
|
26
|
+
|
|
27
|
+
This is an alias. It installs
|
|
28
|
+
[`pyligent-agents`](https://pypi.org/project/pyligent-agents/), which provides the
|
|
29
|
+
`evidence-check` command.
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install evidence-check
|
|
33
|
+
evidence-check contract.pdf extraction.json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Both of these install the same software:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install evidence-check
|
|
40
|
+
pip install pyligent-agents
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## What the command does
|
|
44
|
+
|
|
45
|
+
It reports which values in an extraction the source document does not support. It
|
|
46
|
+
needs no API key, no network and no ground-truth labels.
|
|
47
|
+
|
|
48
|
+
| Finding | Meaning |
|
|
49
|
+
|---|---|
|
|
50
|
+
| `FABRICATED_EVIDENCE` | the citation does not appear in the document |
|
|
51
|
+
| `SILENT_REPAIR` | the citation appears, but states a value other than the one extracted |
|
|
52
|
+
| `PLACEHOLDER_VALUE` | the value is `TBD`, `N/A` or similar |
|
|
53
|
+
|
|
54
|
+
Exit codes: `0` no findings, `1` findings to review, `2` the run could not happen.
|
|
55
|
+
Exit 1 is a result, not a failure.
|
|
56
|
+
|
|
57
|
+
This confirms evidential support, not accuracy. A citation may be present, verbatim,
|
|
58
|
+
and still cite the wrong clause.
|
|
59
|
+
|
|
60
|
+
Documentation and source: **https://github.com/Pyligent/pyligent-agents**
|
|
61
|
+
|
|
62
|
+
Apache-2.0.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyligent-agents>=0.3.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "evidence-check"
|
|
7
|
+
version = "0.3.0"
|
|
8
|
+
description = "Alias for pyligent-agents, which provides the evidence-check command."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Pyligent" }]
|
|
13
|
+
keywords = ["extraction", "citations", "evidence", "verification", "documents"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
25
|
+
]
|
|
26
|
+
dependencies = ["pyligent-agents>=0.3.0"]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/Pyligent/pyligent-agents"
|
|
30
|
+
Documentation = "https://github.com/Pyligent/pyligent-agents/blob/main/docs/GETTING-STARTED.md"
|
|
31
|
+
Issues = "https://github.com/Pyligent/pyligent-agents/issues"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools]
|
|
34
|
+
py-modules = []
|