getbased-rag 0.7.1__tar.gz → 0.7.2__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 (24) hide show
  1. getbased_rag-0.7.2/LICENSE +20 -0
  2. {getbased_rag-0.7.1/src/getbased_rag.egg-info → getbased_rag-0.7.2}/PKG-INFO +3 -3
  3. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/README.md +1 -1
  4. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/pyproject.toml +2 -2
  5. {getbased_rag-0.7.1 → getbased_rag-0.7.2/src/getbased_rag.egg-info}/PKG-INFO +3 -3
  6. getbased_rag-0.7.1/LICENSE +0 -22
  7. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/setup.cfg +0 -0
  8. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/getbased_rag.egg-info/SOURCES.txt +0 -0
  9. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/getbased_rag.egg-info/dependency_links.txt +0 -0
  10. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/getbased_rag.egg-info/entry_points.txt +0 -0
  11. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/getbased_rag.egg-info/requires.txt +0 -0
  12. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/getbased_rag.egg-info/top_level.txt +0 -0
  13. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/__init__.py +0 -0
  14. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/api_key.py +0 -0
  15. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/cli.py +0 -0
  16. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/config.py +0 -0
  17. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/embedder.py +0 -0
  18. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/ingest.py +0 -0
  19. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/registry.py +0 -0
  20. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/server.py +0 -0
  21. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/src/lens/store.py +0 -0
  22. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/tests/test_env_loader.py +0 -0
  23. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/tests/test_onnx_embedder.py +0 -0
  24. {getbased_rag-0.7.1 → getbased_rag-0.7.2}/tests/test_server.py +0 -0
@@ -0,0 +1,20 @@
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ The licenses for most software and other practical works are designed
15
+ to take away your freedom to share and change the works. By contrast,
16
+ our General Public Licenses are intended to guarantee your freedom to
17
+ share and change all versions of a program--to make sure it remains free
18
+ software for all its users.
19
+
20
+ For the full license text, see <https://www.gnu.org/licenses/agpl-3.0.txt>
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: getbased-rag
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: getbased-rag — standalone RAG knowledge server (formerly the Electron-bundled Lens)
5
- License-Expression: GPL-3.0-only
5
+ License-Expression: AGPL-3.0-or-later
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
8
  License-File: LICENSE
@@ -230,7 +230,7 @@ lens key Print the API key (creates one if missing)
230
230
 
231
231
  ## License
232
232
 
233
- GPL-3.0-only.
233
+ AGPL-3.0-or-later.
234
234
 
235
235
  ---
236
236
 
@@ -198,7 +198,7 @@ lens key Print the API key (creates one if missing)
198
198
 
199
199
  ## License
200
200
 
201
- GPL-3.0-only.
201
+ AGPL-3.0-or-later.
202
202
 
203
203
  ---
204
204
 
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "getbased-rag"
7
- version = "0.7.1"
7
+ version = "0.7.2"
8
8
  description = "getbased-rag — standalone RAG knowledge server (formerly the Electron-bundled Lens)"
9
9
  readme = "README.md"
10
- license = "GPL-3.0-only"
10
+ license = "AGPL-3.0-or-later"
11
11
  requires-python = ">=3.10"
12
12
  dependencies = [
13
13
  "fastapi>=0.110",
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: getbased-rag
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: getbased-rag — standalone RAG knowledge server (formerly the Electron-bundled Lens)
5
- License-Expression: GPL-3.0-only
5
+ License-Expression: AGPL-3.0-or-later
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
8
  License-File: LICENSE
@@ -230,7 +230,7 @@ lens key Print the API key (creates one if missing)
230
230
 
231
231
  ## License
232
232
 
233
- GPL-3.0-only.
233
+ AGPL-3.0-or-later.
234
234
 
235
235
  ---
236
236
 
@@ -1,22 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
3
-
4
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
7
-
8
- Preamble
9
-
10
- The GNU General Public License is a free, copyleft license for
11
- software and other kinds of works.
12
-
13
- The licenses for most software and other practical works are designed
14
- to take away your freedom to share and change the works. By contrast,
15
- the GNU General Public License is intended to guarantee your freedom to
16
- share and change all versions of a program--to make sure it remains free
17
- software for all its users. We, the Free Software Foundation, use the
18
- GNU General Public License for most of our software; it applies also to
19
- any other work released this way by its authors. You can apply it to
20
- your programs, too.
21
-
22
- For the full license text, see <https://www.gnu.org/licenses/gpl-3.0.txt>
File without changes