nosible 0.2.2__tar.gz → 0.2.4__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.
- {nosible-0.2.2/src/nosible.egg-info → nosible-0.2.4}/PKG-INFO +1 -2
- {nosible-0.2.2 → nosible-0.2.4}/pyproject.toml +1 -2
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/result.py +1 -1
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/nosible_client.py +4 -4
- {nosible-0.2.2 → nosible-0.2.4/src/nosible.egg-info}/PKG-INFO +1 -2
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible.egg-info/requires.txt +0 -1
- {nosible-0.2.2 → nosible-0.2.4}/LICENSE +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/README.md +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/setup.cfg +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/setup.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/__init__.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/result_set.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/search.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/search_set.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/snippet.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/snippet_set.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/classes/web_page.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/utils/json_tools.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible/utils/rate_limiter.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible.egg-info/SOURCES.txt +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible.egg-info/dependency_links.txt +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/src/nosible.egg-info/top_level.txt +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/tests/test_01_nosible.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/tests/test_02_results.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/tests/test_03_search_searchset.py +0 -0
- {nosible-0.2.2 → nosible-0.2.4}/tests/test_04_snippets.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nosible
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Python client for the NOSIBLE Search API
|
|
5
5
|
Home-page: https://github.com/NosibleAI/nosible
|
|
6
6
|
Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
|
|
@@ -27,7 +27,6 @@ Classifier: Operating System :: OS Independent
|
|
|
27
27
|
Requires-Python: >=3.9
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE
|
|
30
|
-
Requires-Dist: requests
|
|
31
30
|
Requires-Dist: polars
|
|
32
31
|
Requires-Dist: duckdb
|
|
33
32
|
Requires-Dist: openai
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nosible"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
description = "Python client for the NOSIBLE Search API"
|
|
5
5
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
6
6
|
requires-python = ">=3.9"
|
|
@@ -12,7 +12,6 @@ authors = [
|
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
dependencies = [
|
|
15
|
-
"requests",
|
|
16
15
|
"polars",
|
|
17
16
|
"duckdb",
|
|
18
17
|
"openai",
|
|
@@ -332,7 +332,7 @@ class Result:
|
|
|
332
332
|
n_results: int = 100,
|
|
333
333
|
n_probes: int = 30,
|
|
334
334
|
n_contextify: int = 128,
|
|
335
|
-
algorithm: str = "hybrid-
|
|
335
|
+
algorithm: str = "hybrid-3",
|
|
336
336
|
publish_start: str = None,
|
|
337
337
|
publish_end: str = None,
|
|
338
338
|
include_netlocs: list = None,
|
|
@@ -208,7 +208,7 @@ class Nosible:
|
|
|
208
208
|
n_results: int = 100,
|
|
209
209
|
n_probes: int = 30,
|
|
210
210
|
n_contextify: int = 128,
|
|
211
|
-
algorithm: str = "hybrid-
|
|
211
|
+
algorithm: str = "hybrid-3",
|
|
212
212
|
min_similarity: float = None,
|
|
213
213
|
must_include: list[str] = None,
|
|
214
214
|
must_exclude: list[str] = None,
|
|
@@ -385,7 +385,7 @@ class Nosible:
|
|
|
385
385
|
n_results: int = 100,
|
|
386
386
|
n_probes: int = 30,
|
|
387
387
|
n_contextify: int = 128,
|
|
388
|
-
algorithm: str = "hybrid-
|
|
388
|
+
algorithm: str = "hybrid-3",
|
|
389
389
|
min_similarity: float = None,
|
|
390
390
|
must_include: list[str] = None,
|
|
391
391
|
must_exclude: list[str] = None,
|
|
@@ -604,7 +604,7 @@ class Nosible:
|
|
|
604
604
|
n_results = search_obj.n_results if search_obj.n_results is not None else 100
|
|
605
605
|
n_probes = search_obj.n_probes if search_obj.n_probes is not None else 30
|
|
606
606
|
n_contextify = search_obj.n_contextify if search_obj.n_contextify is not None else 128
|
|
607
|
-
algorithm = search_obj.algorithm if search_obj.algorithm is not None else "hybrid-
|
|
607
|
+
algorithm = search_obj.algorithm if search_obj.algorithm is not None else "hybrid-3"
|
|
608
608
|
min_similarity = search_obj.min_similarity if search_obj.min_similarity is not None else 0
|
|
609
609
|
must_include = search_obj.must_include if search_obj.must_include is not None else []
|
|
610
610
|
must_exclude = search_obj.must_exclude if search_obj.must_exclude is not None else []
|
|
@@ -732,7 +732,7 @@ class Nosible:
|
|
|
732
732
|
n_results: int = 1000,
|
|
733
733
|
n_probes: int = 30,
|
|
734
734
|
n_contextify: int = 128,
|
|
735
|
-
algorithm: str = "hybrid-
|
|
735
|
+
algorithm: str = "hybrid-3",
|
|
736
736
|
min_similarity: float = None,
|
|
737
737
|
must_include: list[str] = None,
|
|
738
738
|
must_exclude: list[str] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nosible
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Python client for the NOSIBLE Search API
|
|
5
5
|
Home-page: https://github.com/NosibleAI/nosible
|
|
6
6
|
Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
|
|
@@ -27,7 +27,6 @@ Classifier: Operating System :: OS Independent
|
|
|
27
27
|
Requires-Python: >=3.9
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE
|
|
30
|
-
Requires-Dist: requests
|
|
31
30
|
Requires-Dist: polars
|
|
32
31
|
Requires-Dist: duckdb
|
|
33
32
|
Requires-Dist: openai
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|