qalens 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 (162) hide show
  1. qalens-0.1.0/.gitignore +154 -0
  2. qalens-0.1.0/LICENSE +191 -0
  3. qalens-0.1.0/PKG-INFO +853 -0
  4. qalens-0.1.0/README.md +607 -0
  5. qalens-0.1.0/frontend/index.html +30 -0
  6. qalens-0.1.0/frontend/package-lock.json +3734 -0
  7. qalens-0.1.0/frontend/package.json +35 -0
  8. qalens-0.1.0/frontend/postcss.config.ts +6 -0
  9. qalens-0.1.0/frontend/public/android-chrome-192x192.png +0 -0
  10. qalens-0.1.0/frontend/public/android-chrome-512x512.png +0 -0
  11. qalens-0.1.0/frontend/public/apple-touch-icon.png +0 -0
  12. qalens-0.1.0/frontend/public/favicon-16x16.png +0 -0
  13. qalens-0.1.0/frontend/public/favicon-32x32.png +0 -0
  14. qalens-0.1.0/frontend/public/favicon-64x64.png +0 -0
  15. qalens-0.1.0/frontend/public/favicon.ico +0 -0
  16. qalens-0.1.0/frontend/public/favicon.svg +425 -0
  17. qalens-0.1.0/frontend/public/qalens-icon-dark.png +0 -0
  18. qalens-0.1.0/frontend/public/qalens-icon.png +0 -0
  19. qalens-0.1.0/frontend/public/qalens-logo-dark.png +0 -0
  20. qalens-0.1.0/frontend/public/qalens-logo.png +0 -0
  21. qalens-0.1.0/frontend/public/site.webmanifest +14 -0
  22. qalens-0.1.0/frontend/src/App.tsx +780 -0
  23. qalens-0.1.0/frontend/src/compare-engine/CompareEngine.tsx +517 -0
  24. qalens-0.1.0/frontend/src/compare-engine/components/CompareControlBar.tsx +266 -0
  25. qalens-0.1.0/frontend/src/compare-engine/components/output/ComparisonSummaryCards.tsx +158 -0
  26. qalens-0.1.0/frontend/src/compare-engine/components/output/ComparisonTable.tsx +198 -0
  27. qalens-0.1.0/frontend/src/compare-engine/components/output/EntityComparisonView.tsx +1719 -0
  28. qalens-0.1.0/frontend/src/compare-engine/components/output/HistoryMatrixView.tsx +436 -0
  29. qalens-0.1.0/frontend/src/compare-engine/components/pickers/OwnerPicker.tsx +300 -0
  30. qalens-0.1.0/frontend/src/compare-engine/components/pickers/RunPicker.tsx +646 -0
  31. qalens-0.1.0/frontend/src/compare-engine/components/pickers/SuitePicker.tsx +226 -0
  32. qalens-0.1.0/frontend/src/compare-engine/hooks/useCompareData.ts +625 -0
  33. qalens-0.1.0/frontend/src/compare-engine/hooks/useCompareState.ts +147 -0
  34. qalens-0.1.0/frontend/src/compare-engine/index.ts +21 -0
  35. qalens-0.1.0/frontend/src/compare-engine/mockData.ts +111 -0
  36. qalens-0.1.0/frontend/src/compare-engine/types.ts +180 -0
  37. qalens-0.1.0/frontend/src/components/Dropdown.tsx +255 -0
  38. qalens-0.1.0/frontend/src/components/Modal.tsx +69 -0
  39. qalens-0.1.0/frontend/src/components/PageHeader.tsx +73 -0
  40. qalens-0.1.0/frontend/src/components/Tooltip.tsx +116 -0
  41. qalens-0.1.0/frontend/src/components/icons/TrophyIcon.tsx +29 -0
  42. qalens-0.1.0/frontend/src/hooks/useApi.ts +0 -0
  43. qalens-0.1.0/frontend/src/hooks/useProject.tsx +71 -0
  44. qalens-0.1.0/frontend/src/index.css +1362 -0
  45. qalens-0.1.0/frontend/src/main.tsx +13 -0
  46. qalens-0.1.0/frontend/src/panels/AnalysisPanel.tsx +1000 -0
  47. qalens-0.1.0/frontend/src/panels/ChatPanel.tsx +1475 -0
  48. qalens-0.1.0/frontend/src/panels/FailureFlakinessView.tsx +1756 -0
  49. qalens-0.1.0/frontend/src/panels/IncidentsPanel.tsx +1336 -0
  50. qalens-0.1.0/frontend/src/panels/RegressionsView.tsx +875 -0
  51. qalens-0.1.0/frontend/src/panels/RiskPanel.tsx +989 -0
  52. qalens-0.1.0/frontend/src/panels/RunTimelineStrip.tsx +214 -0
  53. qalens-0.1.0/frontend/src/panels/RunsPanel.tsx +2520 -0
  54. qalens-0.1.0/frontend/src/panels/SettingsPanel.tsx +509 -0
  55. qalens-0.1.0/frontend/src/panels/chat/ResultWorkspace.tsx +3439 -0
  56. qalens-0.1.0/frontend/src/panels/chat/markdown.test.ts +29 -0
  57. qalens-0.1.0/frontend/src/panels/chat/markdown.ts +16 -0
  58. qalens-0.1.0/frontend/src/panels/chat/types.ts +734 -0
  59. qalens-0.1.0/frontend/src/types/api.ts +0 -0
  60. qalens-0.1.0/frontend/src/vite-env.d.ts +5 -0
  61. qalens-0.1.0/frontend/tailwind.config.ts +106 -0
  62. qalens-0.1.0/frontend/tsconfig.app.json +27 -0
  63. qalens-0.1.0/frontend/tsconfig.json +7 -0
  64. qalens-0.1.0/frontend/tsconfig.node.json +23 -0
  65. qalens-0.1.0/frontend/vite.config.ts +27 -0
  66. qalens-0.1.0/hatch_build.py +66 -0
  67. qalens-0.1.0/pyproject.toml +221 -0
  68. qalens-0.1.0/src/qalens/__init__.py +29 -0
  69. qalens-0.1.0/src/qalens/analyzers/__init__.py +5 -0
  70. qalens-0.1.0/src/qalens/analyzers/canonical.py +113 -0
  71. qalens-0.1.0/src/qalens/analyzers/categorizer.py +262 -0
  72. qalens-0.1.0/src/qalens/analyzers/clustering.py +212 -0
  73. qalens-0.1.0/src/qalens/analyzers/comparison.py +822 -0
  74. qalens-0.1.0/src/qalens/analyzers/decision.py +585 -0
  75. qalens-0.1.0/src/qalens/analyzers/fingerprint.py +149 -0
  76. qalens-0.1.0/src/qalens/analyzers/flaky.py +522 -0
  77. qalens-0.1.0/src/qalens/analyzers/incidents.py +354 -0
  78. qalens-0.1.0/src/qalens/analyzers/predictor.py +470 -0
  79. qalens-0.1.0/src/qalens/analyzers/signatures.py +209 -0
  80. qalens-0.1.0/src/qalens/api/__init__.py +8 -0
  81. qalens-0.1.0/src/qalens/api/_render.py +181 -0
  82. qalens-0.1.0/src/qalens/api/library.py +822 -0
  83. qalens-0.1.0/src/qalens/artifacts/__init__.py +40 -0
  84. qalens-0.1.0/src/qalens/artifacts/config.py +73 -0
  85. qalens-0.1.0/src/qalens/artifacts/image.py +215 -0
  86. qalens-0.1.0/src/qalens/artifacts/models.py +104 -0
  87. qalens-0.1.0/src/qalens/artifacts/policy.py +299 -0
  88. qalens-0.1.0/src/qalens/artifacts/selector.py +107 -0
  89. qalens-0.1.0/src/qalens/artifacts/storage.py +209 -0
  90. qalens-0.1.0/src/qalens/cli/__init__.py +80 -0
  91. qalens-0.1.0/src/qalens/cli/commands/__init__.py +1 -0
  92. qalens-0.1.0/src/qalens/cli/commands/analyze.py +556 -0
  93. qalens-0.1.0/src/qalens/cli/commands/ask.py +151 -0
  94. qalens-0.1.0/src/qalens/cli/commands/compare.py +332 -0
  95. qalens-0.1.0/src/qalens/cli/commands/config.py +173 -0
  96. qalens-0.1.0/src/qalens/cli/commands/history.py +434 -0
  97. qalens-0.1.0/src/qalens/cli/commands/ingest.py +337 -0
  98. qalens-0.1.0/src/qalens/cli/commands/report.py +115 -0
  99. qalens-0.1.0/src/qalens/cli/commands/serve.py +137 -0
  100. qalens-0.1.0/src/qalens/db/__init__.py +5 -0
  101. qalens-0.1.0/src/qalens/db/models.py +74 -0
  102. qalens-0.1.0/src/qalens/db/repository.py +929 -0
  103. qalens-0.1.0/src/qalens/db/schema.py +221 -0
  104. qalens-0.1.0/src/qalens/llm/__init__.py +6 -0
  105. qalens-0.1.0/src/qalens/llm/answer_plan.py +875 -0
  106. qalens-0.1.0/src/qalens/llm/answer_types.py +222 -0
  107. qalens-0.1.0/src/qalens/llm/client.py +316 -0
  108. qalens-0.1.0/src/qalens/llm/config.py +291 -0
  109. qalens-0.1.0/src/qalens/llm/context.py +764 -0
  110. qalens-0.1.0/src/qalens/llm/context_date.py +188 -0
  111. qalens-0.1.0/src/qalens/llm/context_history.py +445 -0
  112. qalens-0.1.0/src/qalens/llm/context_risk.py +203 -0
  113. qalens-0.1.0/src/qalens/llm/deterministic_answers.py +1131 -0
  114. qalens-0.1.0/src/qalens/llm/followups.py +443 -0
  115. qalens-0.1.0/src/qalens/llm/intent_detection.py +678 -0
  116. qalens-0.1.0/src/qalens/llm/prompts.py +813 -0
  117. qalens-0.1.0/src/qalens/llm/routing.py +2107 -0
  118. qalens-0.1.0/src/qalens/llm/trend.py +223 -0
  119. qalens-0.1.0/src/qalens/models/__init__.py +28 -0
  120. qalens-0.1.0/src/qalens/models/artifact_ref.py +68 -0
  121. qalens-0.1.0/src/qalens/models/attachment.py +136 -0
  122. qalens-0.1.0/src/qalens/models/failure.py +101 -0
  123. qalens-0.1.0/src/qalens/models/incident.py +90 -0
  124. qalens-0.1.0/src/qalens/models/insight.py +367 -0
  125. qalens-0.1.0/src/qalens/models/run.py +185 -0
  126. qalens-0.1.0/src/qalens/models/test_case.py +269 -0
  127. qalens-0.1.0/src/qalens/models/warnings.py +79 -0
  128. qalens-0.1.0/src/qalens/ownership.py +209 -0
  129. qalens-0.1.0/src/qalens/parsers/__init__.py +55 -0
  130. qalens-0.1.0/src/qalens/parsers/allure.py +1108 -0
  131. qalens-0.1.0/src/qalens/parsers/base.py +316 -0
  132. qalens-0.1.0/src/qalens/parsers/cypress.py +416 -0
  133. qalens-0.1.0/src/qalens/parsers/detector.py +239 -0
  134. qalens-0.1.0/src/qalens/parsers/extent.py +1335 -0
  135. qalens-0.1.0/src/qalens/parsers/junit.py +292 -0
  136. qalens-0.1.0/src/qalens/parsers/playwright.py +379 -0
  137. qalens-0.1.0/src/qalens/parsers/testng.py +329 -0
  138. qalens-0.1.0/src/qalens/reports/__init__.py +6 -0
  139. qalens-0.1.0/src/qalens/reports/builder.py +379 -0
  140. qalens-0.1.0/src/qalens/reports/model.py +114 -0
  141. qalens-0.1.0/src/qalens/reports/renderers.py +825 -0
  142. qalens-0.1.0/src/qalens/security.py +258 -0
  143. qalens-0.1.0/src/qalens/server/__init__.py +17 -0
  144. qalens-0.1.0/src/qalens/server/app.py +384 -0
  145. qalens-0.1.0/src/qalens/server/auth.py +620 -0
  146. qalens-0.1.0/src/qalens/server/models.py +260 -0
  147. qalens-0.1.0/src/qalens/server/routes_analysis.py +307 -0
  148. qalens-0.1.0/src/qalens/server/routes_compare.py +788 -0
  149. qalens-0.1.0/src/qalens/server/routes_decision.py +33 -0
  150. qalens-0.1.0/src/qalens/server/routes_evidence.py +376 -0
  151. qalens-0.1.0/src/qalens/server/routes_export.py +49 -0
  152. qalens-0.1.0/src/qalens/server/routes_homepage.py +204 -0
  153. qalens-0.1.0/src/qalens/server/routes_llm.py +6081 -0
  154. qalens-0.1.0/src/qalens/server/routes_report.py +77 -0
  155. qalens-0.1.0/src/qalens/server/routes_runs.py +199 -0
  156. qalens-0.1.0/src/qalens/server/routes_settings.py +239 -0
  157. qalens-0.1.0/src/qalens/server/static/.gitkeep +0 -0
  158. qalens-0.1.0/src/qalens/server/ui.py +61 -0
  159. qalens-0.1.0/src/qalens/utils/__init__.py +4 -0
  160. qalens-0.1.0/src/qalens/utils/fs.py +212 -0
  161. qalens-0.1.0/src/qalens/utils/text.py +197 -0
  162. qalens-0.1.0/src/qalens/version.py +3 -0
@@ -0,0 +1,154 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ *.egg
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ eggs/
11
+ parts/
12
+ var/
13
+ sdist/
14
+ wheels/
15
+ pip-wheel-metadata/
16
+ share/python-wheels/
17
+ .installed.cfg
18
+ MANIFEST
19
+
20
+ # Virtual environments
21
+ .venv/
22
+ venv/
23
+ env/
24
+ ENV/
25
+ .env/
26
+ .python-version
27
+ .tox/
28
+ .nox/
29
+
30
+ # Distribution / packaging
31
+ .Python
32
+ develop-eggs/
33
+ lib/
34
+ lib64/
35
+
36
+ # Pytest and coverage
37
+ .pytest_cache/
38
+ .coverage
39
+ .coverage.*
40
+ coverage.xml
41
+ htmlcov/
42
+ *.cover
43
+ *.py,cover
44
+ .hypothesis/
45
+ .cache/
46
+ nosetests.xml
47
+ test-results/
48
+ junit*.xml
49
+ pytestdebug.log
50
+
51
+ # mypy
52
+ .mypy_cache/
53
+ .dmypy.json
54
+ dmypy.json
55
+
56
+ # ruff
57
+ .ruff_cache/
58
+
59
+ # macOS
60
+ __MACOSX/
61
+ .DS_Store
62
+
63
+ # IDEs
64
+ .idea/
65
+ .vscode/
66
+ .claude/
67
+ *.swp
68
+ *.swo
69
+ *~
70
+ Thumbs.db
71
+
72
+ # Jupyter
73
+ .ipynb_checkpoints/
74
+ *.ipynb
75
+
76
+ # Secrets / env files
77
+ .env
78
+ .env.*
79
+ secrets.toml
80
+ *.pem
81
+ *.key
82
+ *.crt
83
+ *.p12
84
+ *.pfx
85
+
86
+ # QA Lens — local history and output dirs
87
+ /history/
88
+ .qalens_cache/
89
+ /outputs/
90
+ /artifacts/
91
+ /screenshots/
92
+ /reports/
93
+
94
+ # Docs build
95
+ docs/_build/
96
+ docs/site/
97
+ site/
98
+
99
+ # SQLite databases
100
+ *.db
101
+ *.db-shm
102
+ *.db-wal
103
+ *.db-journal
104
+ *.sqlite
105
+ *.sqlite3
106
+ *.sqlite-shm
107
+ *.sqlite-wal
108
+ *.sqlite3-shm
109
+ *.sqlite3-wal
110
+
111
+ # QA Lens — local test data and generated reports
112
+ tmp_test_data/
113
+ !tmp_test_data/
114
+ tmp_test_data/*
115
+ !tmp_test_data/ShopNow_E-Commerce/
116
+ !tmp_test_data/ShopNow_E-Commerce/**
117
+ tmp_test_data/ShopNow_E-Commerce/*.db
118
+ tmp_test_data/ShopNow_E-Commerce/*.db-shm
119
+ tmp_test_data/ShopNow_E-Commerce/*.db-wal
120
+ tmp_test_data/ShopNow_E-Commerce/*.db-journal
121
+ tmp_test_data/ShopNow_E-Commerce/**/.DS_Store
122
+ ExtentReport.html
123
+ !tests/fixtures/extent_sample/ExtentReport.html
124
+
125
+ # Design handoff / prototype references (local only, not production code)
126
+ Failure_Pattern_Calude_Design/
127
+ design_handoff_regressions_view/
128
+
129
+ # Temporary
130
+ tmp/
131
+ temp/
132
+ *.tmp
133
+ *.bak
134
+ *.log
135
+ npm-debug.log*
136
+ yarn-debug.log*
137
+ yarn-error.log*
138
+ pnpm-debug.log*
139
+
140
+ # Node / frontend
141
+ node_modules/
142
+ frontend/dist/
143
+ frontend/.vite/
144
+ frontend/.npmrc
145
+ frontend/coverage/
146
+ frontend/playwright-report/
147
+ frontend/test-results/
148
+ frontend/.vitest/
149
+ # TypeScript incremental build cache
150
+ *.tsbuildinfo
151
+ # Generated frontend assets — rebuilt by `make build-ui` / `hatch build`.
152
+ # The .gitkeep marker keeps the directory tracked; everything else is ignored.
153
+ src/qalens/server/static/*
154
+ !src/qalens/server/static/.gitkeep
qalens-0.1.0/LICENSE ADDED
@@ -0,0 +1,191 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship made available under
36
+ the License, as indicated by a copyright notice that is included in
37
+ or attached to the work (an example is provided in the Appendix below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other transformations
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean, as submitted to the Licensor for inclusion
48
+ in the Work by the copyright owner or by an individual or Legal Entity
49
+ authorized to submit on behalf of the copyright owner. For the purposes
50
+ of this definition, "submitted" means any form of electronic, verbal,
51
+ or written communication sent to the Licensor or its representatives,
52
+ including but not limited to communication on electronic mailing lists,
53
+ source code control systems, and issue tracking systems that are managed
54
+ by, or on behalf of, the Licensor for the purpose of developing and
55
+ coordinating the Work, but excluding communication that is
56
+ conspicuously marked or otherwise designated in writing by the copyright
57
+ owner as "Not a Contribution."
58
+
59
+ "Contributor" shall mean Licensor and any Legal Entity on behalf of
60
+ whom a Contribution has been received by the Licensor and included
61
+ within the Work.
62
+
63
+ 2. Grant of Copyright License. Subject to the terms and conditions of
64
+ this License, each Contributor hereby grants to You a perpetual,
65
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
66
+ copyright license to reproduce, prepare Derivative Works of,
67
+ publicly display, publicly perform, sublicense, and distribute the
68
+ Work and such Derivative Works in Source or Object form.
69
+
70
+ 3. Grant of Patent License. Subject to the terms and conditions of
71
+ this License, each Contributor hereby grants to You a perpetual,
72
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
73
+ (except as stated in this section) patent license to make, have made,
74
+ use, offer to sell, sell, import, and otherwise transfer the Work,
75
+ where such license applies only to those patent claims licensable
76
+ by such Contributor that are necessarily infringed by their
77
+ Contribution(s) alone or by the combination of their Contribution(s)
78
+ with the Work to which such Contribution(s) was submitted. If You
79
+ institute patent litigation against any entity (including a
80
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
81
+ or a Contribution incorporated within the Work constitutes direct
82
+ or contributory patent infringement, then any patent licenses
83
+ granted to You under this License for that Work shall terminate
84
+ as of the date such litigation is filed.
85
+
86
+ 4. Redistribution. You may reproduce and distribute copies of the
87
+ Work or Derivative Works thereof in any medium, with or without
88
+ modifications, and in Source or Object form, provided that You
89
+ meet the following conditions:
90
+
91
+ (a) You must give any other recipients of the Work or Derivative
92
+ Works a copy of this License; and
93
+
94
+ (b) You must cause any modified files to carry prominent notices
95
+ stating that You changed the files; and
96
+
97
+ (c) You must retain, in the Source form of any Derivative Works
98
+ that You distribute, all copyright, patent, trademark, and
99
+ attribution notices from the Source form of the Work,
100
+ excluding those notices that do not pertain to any part of
101
+ the Derivative Works; and
102
+
103
+ (d) If the Work includes a "NOTICE" text file as part of its
104
+ distribution, You must include a readable copy of the
105
+ attribution notices contained within such NOTICE file, in
106
+ at least one of the following places: within a NOTICE text
107
+ file distributed as part of the Derivative Works; within
108
+ the Source form or documentation, if provided along with the
109
+ Derivative Works; or, within a display generated by the
110
+ Derivative Works, if and wherever such third-party notices
111
+ normally appear. The contents of the NOTICE file are for
112
+ informational purposes only and do not modify the License.
113
+ You may add Your own attribution notices within Derivative
114
+ Works that You distribute, alongside or in addition to the
115
+ NOTICE text from the Work, provided that such additional
116
+ attribution notices cannot be construed as modifying the License.
117
+
118
+ You may add Your own license statement for Your modifications and
119
+ may provide additional grant of rights to use, copy, modify, merge,
120
+ publish, distribute, sublicense, and/or sell copies of the
121
+ contribution, and to represent that it is original work, consistent
122
+ with its role in general open source software practices.
123
+
124
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
125
+ any Contribution intentionally submitted for inclusion in the Work
126
+ by You to the Licensor shall be under the terms and conditions of
127
+ this License, without any additional terms or conditions.
128
+ Notwithstanding the above, nothing herein shall supersede or modify
129
+ the terms of any separate license agreement you may have executed
130
+ with Licensor regarding such Contributions.
131
+
132
+ 6. Trademarks. This License does not grant permission to use the trade
133
+ names, trademarks, service marks, or product names of the Licensor,
134
+ except as required for reasonable and customary use in describing the
135
+ origin of the Work and reproducing the content of the NOTICE file.
136
+
137
+ 7. Disclaimer of Warranty. Unless required by applicable law or
138
+ agreed to in writing, Licensor provides the Work (and each
139
+ Contributor provides its Contributions) on an "AS IS" BASIS,
140
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
141
+ implied, including, without limitation, any warranties or conditions
142
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
143
+ PARTICULAR PURPOSE. You are solely responsible for determining the
144
+ appropriateness of using or reproducing the Work and assume any
145
+ risks associated with Your exercise of permissions under this License.
146
+
147
+ 8. Limitation of Liability. In no event and under no legal theory,
148
+ whether in tort (including negligence), contract, or otherwise,
149
+ unless required by applicable law (such as deliberate and grossly
150
+ negligent acts) or agreed to in writing, shall any Contributor be
151
+ liable to You for damages, including any direct, indirect, special,
152
+ incidental, or exemplary damages of any character arising as a
153
+ result of this License or out of the use or inability to use the
154
+ Work (including but not limited to damages for loss of goodwill,
155
+ work stoppage, computer failure or malfunction, or all other
156
+ commercial damages or losses), even if such Contributor has been
157
+ advised of the possibility of such damages.
158
+
159
+ 9. Accepting Warranty or Additional Liability. While redistributing
160
+ the Work or Derivative Works thereof, You may choose to offer,
161
+ and charge a fee for, acceptance of support, warranty, indemnity,
162
+ or other liability obligations and/or rights consistent with this
163
+ License. However, in accepting such obligations, You may offer only
164
+ conditions consistent with this License, provided that You include
165
+ terms and conditions that clearly describe the terms of the
166
+ indemnity or warranty and disclaim any implied warranties.
167
+
168
+ END OF TERMS AND CONDITIONS
169
+
170
+ APPENDIX: How to apply the Apache License to your work.
171
+
172
+ To apply the Apache License to your work, attach the following
173
+ boilerplate notice, with the fields enclosed by brackets "[]"
174
+ replaced with your own identifying information. (Don't include
175
+ the brackets!) The text should be enclosed in the appropriate
176
+ comment syntax for the file format in question. It also should be
177
+ formatted correctly to be readable by humans.
178
+
179
+ Copyright 2026 QA Lens Contributors
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ http://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
+ limitations under the License.