agent-chronicle 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.
Files changed (101) hide show
  1. agent_chronicle-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +36 -0
  2. agent_chronicle-0.1.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
  3. agent_chronicle-0.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +25 -0
  4. agent_chronicle-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +17 -0
  5. agent_chronicle-0.1.0/.github/workflows/ci.yml +41 -0
  6. agent_chronicle-0.1.0/.github/workflows/release.yml +44 -0
  7. agent_chronicle-0.1.0/.gitignore +19 -0
  8. agent_chronicle-0.1.0/CHANGELOG.md +33 -0
  9. agent_chronicle-0.1.0/CODE_OF_CONDUCT.md +72 -0
  10. agent_chronicle-0.1.0/CONTRIBUTING.md +60 -0
  11. agent_chronicle-0.1.0/LICENSE.txt +21 -0
  12. agent_chronicle-0.1.0/PKG-INFO +346 -0
  13. agent_chronicle-0.1.0/README.md +294 -0
  14. agent_chronicle-0.1.0/RELEASING.md +47 -0
  15. agent_chronicle-0.1.0/SECURITY.md +51 -0
  16. agent_chronicle-0.1.0/chronicle/__init__.py +41 -0
  17. agent_chronicle-0.1.0/chronicle/boundary.py +143 -0
  18. agent_chronicle-0.1.0/chronicle/cli.py +174 -0
  19. agent_chronicle-0.1.0/chronicle/envelope/__init__.py +5 -0
  20. agent_chronicle-0.1.0/chronicle/envelope/capture.py +194 -0
  21. agent_chronicle-0.1.0/chronicle/envelope/schema.py +140 -0
  22. agent_chronicle-0.1.0/chronicle/envelope/store.py +70 -0
  23. agent_chronicle-0.1.0/chronicle/execution_graph.py +169 -0
  24. agent_chronicle-0.1.0/chronicle/instrumentation/__init__.py +19 -0
  25. agent_chronicle-0.1.0/chronicle/instrumentation/langgraph.py +102 -0
  26. agent_chronicle-0.1.0/chronicle/instrumentation/openinference.py +75 -0
  27. agent_chronicle-0.1.0/chronicle/judge/__init__.py +17 -0
  28. agent_chronicle-0.1.0/chronicle/judge/rubric.py +73 -0
  29. agent_chronicle-0.1.0/chronicle/judge/runner.py +152 -0
  30. agent_chronicle-0.1.0/chronicle/redaction.py +91 -0
  31. agent_chronicle-0.1.0/chronicle/replay/__init__.py +23 -0
  32. agent_chronicle-0.1.0/chronicle/replay/assertions.py +134 -0
  33. agent_chronicle-0.1.0/chronicle/replay/injector.py +114 -0
  34. agent_chronicle-0.1.0/chronicle/replay/plan.py +51 -0
  35. agent_chronicle-0.1.0/chronicle/session.py +344 -0
  36. agent_chronicle-0.1.0/chronicle/visualizer.py +543 -0
  37. agent_chronicle-0.1.0/examples/README.md +15 -0
  38. agent_chronicle-0.1.0/examples/deletion_agent/__init__.py +0 -0
  39. agent_chronicle-0.1.0/examples/deletion_agent/agent_bench.py +154 -0
  40. agent_chronicle-0.1.0/examples/deletion_agent/record_incident.py +49 -0
  41. agent_chronicle-0.1.0/examples/deletion_agent/run_cutpoint_demo.py +63 -0
  42. agent_chronicle-0.1.0/examples/deletion_agent/show_trace.py +91 -0
  43. agent_chronicle-0.1.0/examples/financial_incidents/__init__.py +1 -0
  44. agent_chronicle-0.1.0/examples/financial_incidents/_helpers.py +156 -0
  45. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/01-scenario-setup.html +37 -0
  46. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/01-scenario-setup.png +0 -0
  47. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/02-agent-bug.html +38 -0
  48. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/02-agent-bug.png +0 -0
  49. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/03-max-amount-gate.html +37 -0
  50. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/03-max-amount-gate.png +0 -0
  51. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/04-chronicle-test.html +40 -0
  52. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/04-chronicle-test.png +0 -0
  53. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/05-record-terminal.html +38 -0
  54. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/05-record-terminal.png +0 -0
  55. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/06-test-terminal.html +39 -0
  56. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/06-test-terminal.png +0 -0
  57. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/README.md +30 -0
  58. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/build_slides.py +109 -0
  59. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/capture.py +33 -0
  60. agent_chronicle-0.1.0/examples/financial_incidents/demo-screenshots/trade-demo.html +228 -0
  61. agent_chronicle-0.1.0/examples/financial_incidents/invoice_currency.py +132 -0
  62. agent_chronicle-0.1.0/examples/financial_incidents/refund_order_id.py +123 -0
  63. agent_chronicle-0.1.0/examples/financial_incidents/run.py +260 -0
  64. agent_chronicle-0.1.0/examples/financial_incidents/trade_notional.py +136 -0
  65. agent_chronicle-0.1.0/examples/langgraph_demo/agent.py +127 -0
  66. agent_chronicle-0.1.0/fixtures/envelopes/incident-2026-06-17-001.json +67 -0
  67. agent_chronicle-0.1.0/fixtures/traces/deletion-incident-001/001-agent-1.json +69 -0
  68. agent_chronicle-0.1.0/fixtures/traces/deletion-incident-001/002-delete_file-1.json +49 -0
  69. agent_chronicle-0.1.0/fixtures/traces/deletion-incident-001/003-agent-2.json +76 -0
  70. agent_chronicle-0.1.0/fixtures/traces/deletion-incident-001/graph.json +42 -0
  71. agent_chronicle-0.1.0/fixtures/traces/invoice-currency/001-agent-1.json +70 -0
  72. agent_chronicle-0.1.0/fixtures/traces/invoice-currency/002-create_invoice-1.json +54 -0
  73. agent_chronicle-0.1.0/fixtures/traces/invoice-currency/003-agent-2.json +79 -0
  74. agent_chronicle-0.1.0/fixtures/traces/invoice-currency/graph.json +42 -0
  75. agent_chronicle-0.1.0/fixtures/traces/refund-order-id/001-agent-1.json +68 -0
  76. agent_chronicle-0.1.0/fixtures/traces/refund-order-id/002-issue_refund-1.json +51 -0
  77. agent_chronicle-0.1.0/fixtures/traces/refund-order-id/003-agent-2.json +76 -0
  78. agent_chronicle-0.1.0/fixtures/traces/refund-order-id/graph.json +42 -0
  79. agent_chronicle-0.1.0/fixtures/traces/trade-notional/001-agent-1.json +70 -0
  80. agent_chronicle-0.1.0/fixtures/traces/trade-notional/002-place_order-1.json +57 -0
  81. agent_chronicle-0.1.0/fixtures/traces/trade-notional/003-agent-2.json +80 -0
  82. agent_chronicle-0.1.0/fixtures/traces/trade-notional/graph.json +42 -0
  83. agent_chronicle-0.1.0/pyproject.toml +102 -0
  84. agent_chronicle-0.1.0/scripts/demo.bat +4 -0
  85. agent_chronicle-0.1.0/scripts/demo.sh +6 -0
  86. agent_chronicle-0.1.0/scripts/quickrun.bat +4 -0
  87. agent_chronicle-0.1.0/scripts/quickrun.sh +6 -0
  88. agent_chronicle-0.1.0/scripts/run.py +148 -0
  89. agent_chronicle-0.1.0/scripts/test.bat +4 -0
  90. agent_chronicle-0.1.0/scripts/test.sh +6 -0
  91. agent_chronicle-0.1.0/tests/test_cost_management_e2e.py +275 -0
  92. agent_chronicle-0.1.0/tests/test_deletion_cutpoint.py +83 -0
  93. agent_chronicle-0.1.0/tests/test_envelope_schema.py +53 -0
  94. agent_chronicle-0.1.0/tests/test_execution_graph.py +30 -0
  95. agent_chronicle-0.1.0/tests/test_financial_incidents.py +55 -0
  96. agent_chronicle-0.1.0/tests/test_judge_layer2.py +42 -0
  97. agent_chronicle-0.1.0/tests/test_metadata_capture.py +108 -0
  98. agent_chronicle-0.1.0/tests/test_on_crossing.py +120 -0
  99. agent_chronicle-0.1.0/tests/test_redaction.py +89 -0
  100. agent_chronicle-0.1.0/tests/test_replay_layer1.py +102 -0
  101. agent_chronicle-0.1.0/tests/test_visualizer.py +27 -0
@@ -0,0 +1,36 @@
1
+ name: Bug report
2
+ description: Something in Chronicle behaves incorrectly (recording, replay, cut-point, judge, CLI).
3
+ labels: ["bug"]
4
+ body:
5
+ - type: textarea
6
+ id: what-happened
7
+ attributes:
8
+ label: What happened?
9
+ description: A clear description of the bug and what you expected instead.
10
+ validations:
11
+ required: true
12
+ - type: textarea
13
+ id: repro
14
+ attributes:
15
+ label: Reproduction
16
+ description: Minimal steps or a code snippet. If it involves a fixture, attach or paste the relevant envelope.
17
+ placeholder: |
18
+ 1. Record with `@boundary(...)`
19
+ 2. Replay with `ReplayPlan().stub(...).live(...)`
20
+ 3. ...
21
+ validations:
22
+ required: true
23
+ - type: input
24
+ id: version
25
+ attributes:
26
+ label: Chronicle version
27
+ description: Output of `pip show agent-chronicle` (or the commit SHA).
28
+ validations:
29
+ required: true
30
+ - type: input
31
+ id: python
32
+ attributes:
33
+ label: Python version
34
+ placeholder: "3.11"
35
+ validations:
36
+ required: true
@@ -0,0 +1,8 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Questions & ideas
4
+ url: https://github.com/theagentplane/chronicle/discussions
5
+ about: For open-ended questions or design discussions, start a Discussion. Please open an issue or Discussion before large changes so we can align.
6
+ - name: Security vulnerability
7
+ url: https://github.com/theagentplane/chronicle/blob/main/SECURITY.md
8
+ about: Do not file public issues for security problems — follow SECURITY.md instead.
@@ -0,0 +1,25 @@
1
+ name: Feature request
2
+ description: Propose a new capability or improvement (framework support, replay ergonomics, judges, etc.).
3
+ labels: ["enhancement"]
4
+ body:
5
+ - type: textarea
6
+ id: problem
7
+ attributes:
8
+ label: Problem
9
+ description: What are you trying to do that Chronicle makes hard or impossible today?
10
+ validations:
11
+ required: true
12
+ - type: textarea
13
+ id: proposal
14
+ attributes:
15
+ label: Proposed solution
16
+ description: What should Chronicle do? API sketches welcome.
17
+ validations:
18
+ required: true
19
+ - type: textarea
20
+ id: alternatives
21
+ attributes:
22
+ label: Alternatives considered
23
+ description: Other approaches or workarounds you've tried.
24
+ validations:
25
+ required: false
@@ -0,0 +1,17 @@
1
+ <!-- Keep PRs small and focused on one thing (see CONTRIBUTING.md). -->
2
+
3
+ ## Summary
4
+
5
+ <!-- What does this change and why? -->
6
+
7
+ ## Related issue
8
+
9
+ <!-- e.g. Closes #123 -->
10
+
11
+ ## Checklist
12
+
13
+ - [ ] Tests added or updated, and `pytest -v` passes locally
14
+ - [ ] `ruff check .` is clean
15
+ - [ ] Docs / CHANGELOG updated if user-facing
16
+ - [ ] If the Envelope schema changed: bumped at least a minor version and included a fixture migration path (see RELEASING.md)
17
+ - [ ] Commits are signed off for the [DCO](https://developercertificate.org/) (`git commit -s`)
@@ -0,0 +1,41 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ # Cancel superseded runs on the same ref to save runner minutes.
9
+ concurrency:
10
+ group: ci-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ with:
20
+ python-version: "3.12"
21
+ - name: Install ruff
22
+ run: pip install "ruff>=0.6"
23
+ - name: Lint
24
+ run: ruff check .
25
+
26
+ test:
27
+ runs-on: ubuntu-latest
28
+ strategy:
29
+ fail-fast: false
30
+ matrix:
31
+ python-version: ["3.10", "3.11", "3.12"]
32
+ steps:
33
+ - uses: actions/checkout@v4
34
+ - uses: actions/setup-python@v5
35
+ with:
36
+ python-version: ${{ matrix.python-version }}
37
+ - name: Install (editable, with dev extras)
38
+ run: pip install -e ".[dev]"
39
+ - name: Run tests
40
+ # Layer 2 uses a mock judge, so the full suite runs without any API key.
41
+ run: pytest -v
@@ -0,0 +1,44 @@
1
+ name: Release
2
+
3
+ # Publishing a GitHub Release triggers a build and upload to PyPI.
4
+ # See RELEASING.md for the one-time PyPI Trusted Publisher setup.
5
+ on:
6
+ release:
7
+ types: [published]
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: "3.12"
17
+ - name: Build sdist and wheel
18
+ run: |
19
+ pip install "build>=1.2"
20
+ python -m build
21
+ - name: Check metadata
22
+ run: |
23
+ pip install twine
24
+ twine check dist/*
25
+ - uses: actions/upload-artifact@v4
26
+ with:
27
+ name: dist
28
+ path: dist/
29
+
30
+ publish:
31
+ needs: build
32
+ runs-on: ubuntu-latest
33
+ # Trusted Publishing (OIDC) — no API tokens stored. Matches the `pypi`
34
+ # environment and `release.yml` workflow name configured on PyPI.
35
+ environment: pypi
36
+ permissions:
37
+ id-token: write
38
+ steps:
39
+ - uses: actions/download-artifact@v4
40
+ with:
41
+ name: dist
42
+ path: dist/
43
+ - name: Publish to PyPI
44
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,19 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *$py.class
4
+ *.egg-info/
5
+ .eggs/
6
+ dist/
7
+ build/
8
+ .venv/
9
+ venv/
10
+ .env
11
+ .pytest_cache/
12
+ .mypy_cache/
13
+ .ruff_cache/
14
+ .coverage
15
+ htmlcov/
16
+ .chronicle/runs/
17
+ *.sqlite
18
+ .DS_Store
19
+ **/.DS_Store
@@ -0,0 +1,33 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented here.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.0] - 2026-07-22
11
+
12
+ ### Added
13
+ - `@boundary` decorator: record in live mode, stub in replay mode, run live at a
14
+ cut-point. One annotation, three behaviors.
15
+ - Immutable, append-only Envelope capturing contextual metadata, input state,
16
+ action/result, and graph linkage.
17
+ - Real model-version and sampling-parameter capture on the `@boundary` path, plus
18
+ an `extract_metadata` hook for explicit overrides.
19
+ - `EnvelopeStore` (JSONL) and a side execution graph builder.
20
+ - Verification Test Bench: Layer 1 structural replay (never calls the LLM) and
21
+ Layer 2 LLM-as-judge evaluation.
22
+ - Cut-point replay via `ReplayPlan` (stub upstream, run target live, observe
23
+ downstream).
24
+ - Secret redaction: opt-in `session.redactors` / `default_redactors()` that mask
25
+ API keys, tokens, and JWTs before an envelope is stored or committed.
26
+ - Trace visualizer (`chronicle show-graph --ui / --html`).
27
+ - CLI: `record`, `extract`, `replay`, `verify`, `show-graph`, `schema`,
28
+ `list-fixtures`.
29
+ - OpenInference / Arize Phoenix normalization and optional LangGraph node
30
+ wrapping.
31
+
32
+ [Unreleased]: https://github.com/theagentplane/chronicle/compare/v0.1.0...HEAD
33
+ [0.1.0]: https://github.com/theagentplane/chronicle/releases/tag/v0.1.0
@@ -0,0 +1,72 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+
56
+ ## Enforcement
57
+
58
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
59
+ reported to the community leaders responsible for enforcement at
60
+ **[INSERT CONTACT EMAIL]**. All complaints will be reviewed and investigated
61
+ promptly and fairly.
62
+
63
+ All community leaders are obligated to respect the privacy and security of the
64
+ reporter of any incident.
65
+
66
+ ## Attribution
67
+
68
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
69
+ version 2.1, available at
70
+ https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
71
+
72
+ [homepage]: https://www.contributor-covenant.org
@@ -0,0 +1,60 @@
1
+ # Contributing to Chronicle
2
+
3
+ Thanks for your interest in contributing! Chronicle is record-and-replay for
4
+ agent decision graphs, and contributions of all sizes are welcome.
5
+
6
+ ## Getting started
7
+
8
+ ```bash
9
+ git clone https://github.com/theagentplane/chronicle.git
10
+ cd chronicle
11
+ pip install -e ".[dev]"
12
+
13
+ python scripts/run.py demo # interactive walkthrough
14
+ pytest -v # full test suite
15
+ pytest -m layer1 -v # deterministic replay only
16
+ ```
17
+
18
+ ## Ground rules
19
+
20
+ - Keep pull requests small and focused on one thing.
21
+ - Every change needs tests, and CI (lint + tests) must be green before merge.
22
+ - Match the existing code style; run `ruff check .` before pushing.
23
+ - Open an issue or a GitHub Discussion before large changes so we can align.
24
+
25
+ ## Developer Certificate of Origin (DCO)
26
+
27
+ This project uses the [DCO](https://developercertificate.org/) instead of a CLA.
28
+ It's a lightweight, one-line attestation that you have the right to submit your
29
+ contribution under the project's MIT license. Sign off every commit:
30
+
31
+ ```bash
32
+ git commit -s -m "Your message"
33
+ ```
34
+
35
+ That appends a line like `Signed-off-by: Your Name <you@example.com>` to the
36
+ commit. We recommend enabling the DCO GitHub App on the repo so it's enforced
37
+ automatically on every PR.
38
+
39
+ ## Reviewer checklist (record-and-replay specifics)
40
+
41
+ Because this is a replay tool, reviewers pay special attention to:
42
+
43
+ - **Layer 1 replay must never touch the network or call the LLM.** A stray live
44
+ call in "deterministic" replay silently invalidates every regression test.
45
+ - **Envelopes are immutable and append-only.** Don't introduce code that mutates
46
+ a stored envelope in place.
47
+ - **No un-redacted production data in fixtures.** See `SECURITY.md` — captured
48
+ prompts and retrieved chunks are sensitive. Scrub before committing.
49
+ - **Graph linkage stays correct** across retries and parallel invocations
50
+ (`parent_envelope_id`, `sequence`, `invocation_index`).
51
+ - **Cut-point tests** genuinely stub upstream from the fixture and only run the
52
+ target boundary live.
53
+ - **Envelope schema changes** ship with a version bump and a fixture migration
54
+ path so previously committed regressions still load.
55
+
56
+ ## Reporting bugs and requesting features
57
+
58
+ - Bugs: open a GitHub Issue with a minimal reproduction.
59
+ - Ideas and questions: use GitHub Discussions.
60
+ - Security issues: do **not** open a public issue — see `SECURITY.md`.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Tisha Chawla and Susheem Koul
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.