Spaces:
Running
Running
Claude Claude Opus 4.8 commited on
Change license to All Rights Reserved (proprietary)
Browse filesReplace the MIT LICENSE with an all-rights-reserved proprietary notice and
update the pyproject.toml license field to match.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014NcPuobeLq7zNBRHEn5RuU
- LICENSE +8 -11
- pyproject.toml +1 -1
LICENSE
CHANGED
|
@@ -1,16 +1,13 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 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,
|
|
|
|
| 1 |
+
Copyright (c) 2026 Eliezer Avihail. All rights reserved.
|
| 2 |
|
| 3 |
+
This software and its associated documentation files (the "Software") are the
|
| 4 |
+
proprietary and confidential property of the copyright holder. No license,
|
| 5 |
+
express or implied, is granted to any person to use, copy, modify, merge,
|
| 6 |
+
publish, distribute, sublicense, or sell copies of the Software, in whole or in
|
| 7 |
+
part, without the prior written permission of the copyright holder.
|
| 8 |
|
| 9 |
+
Unauthorized copying, distribution, or use of the Software, via any medium, is
|
| 10 |
+
strictly prohibited.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 13 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ version = "0.1.0"
|
|
| 4 |
description = "AI-powered chat agent for PyTorch documentation and code"
|
| 5 |
requires-python = ">=3.11"
|
| 6 |
readme = "README.md"
|
| 7 |
-
license = { text = "
|
| 8 |
# Runtime deps live in requirements.txt (the single source), read in below via
|
| 9 |
# dynamic metadata — HF Spaces installs that file directly, and `pip install .`
|
| 10 |
# / `-e .` picks up the same list. One file, no drift.
|
|
|
|
| 4 |
description = "AI-powered chat agent for PyTorch documentation and code"
|
| 5 |
requires-python = ">=3.11"
|
| 6 |
readme = "README.md"
|
| 7 |
+
license = { text = "All rights reserved" }
|
| 8 |
# Runtime deps live in requirements.txt (the single source), read in below via
|
| 9 |
# dynamic metadata — HF Spaces installs that file directly, and `pip install .`
|
| 10 |
# / `-e .` picks up the same list. One file, no drift.
|