nosible 0.3.4__tar.gz → 0.3.6__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.3.4/src/nosible.egg-info → nosible-0.3.6}/PKG-INFO +19 -1
- {nosible-0.3.4 → nosible-0.3.6}/README.md +18 -0
- {nosible-0.3.4 → nosible-0.3.6}/pyproject.toml +1 -1
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/nosible_client.py +2 -2
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/utils/rate_limiter.py +5 -0
- {nosible-0.3.4 → nosible-0.3.6/src/nosible.egg-info}/PKG-INFO +19 -1
- {nosible-0.3.4 → nosible-0.3.6}/LICENSE +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/setup.cfg +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/setup.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/__init__.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/result.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/result_set.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/search.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/search_set.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/snippet.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/snippet_set.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/classes/web_page.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible/utils/json_tools.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible.egg-info/SOURCES.txt +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible.egg-info/dependency_links.txt +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible.egg-info/requires.txt +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/src/nosible.egg-info/top_level.txt +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/tests/test_01_nosible.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/tests/test_02_results.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/tests/test_03_search_searchset.py +0 -0
- {nosible-0.3.4 → nosible-0.3.6}/tests/test_04_snippets.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nosible
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Python client for the NOSIBLE Search API
|
|
5
5
|
Home-page: https://github.com/NosibleAI/nosible-py
|
|
6
6
|
Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
|
|
@@ -146,6 +146,24 @@ with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
|
146
146
|
print(results)
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
+
### 🤖 Cybernaut 1
|
|
150
|
+
|
|
151
|
+
An AI agent with unrestricted access to everything in NOSIBLE including every shard, algorithm, selector,
|
|
152
|
+
reranker, and signal. It knows what these things are and can tune them on the fly to find better results.
|
|
153
|
+
|
|
154
|
+
```python
|
|
155
|
+
from nosible import Nosible
|
|
156
|
+
|
|
157
|
+
with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
158
|
+
|
|
159
|
+
results = client.search(
|
|
160
|
+
# search() gives you access to Cybernaut 1
|
|
161
|
+
question="Find me interesting technical blogs about Monte Carlo Tree Search."
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
print(results)
|
|
165
|
+
```
|
|
166
|
+
|
|
149
167
|
### 📄 Documentation
|
|
150
168
|
|
|
151
169
|
You can find the full NOSIBLE Search Client documentation
|
|
@@ -103,6 +103,24 @@ with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
|
103
103
|
print(results)
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
+
### 🤖 Cybernaut 1
|
|
107
|
+
|
|
108
|
+
An AI agent with unrestricted access to everything in NOSIBLE including every shard, algorithm, selector,
|
|
109
|
+
reranker, and signal. It knows what these things are and can tune them on the fly to find better results.
|
|
110
|
+
|
|
111
|
+
```python
|
|
112
|
+
from nosible import Nosible
|
|
113
|
+
|
|
114
|
+
with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
115
|
+
|
|
116
|
+
results = client.search(
|
|
117
|
+
# search() gives you access to Cybernaut 1
|
|
118
|
+
question="Find me interesting technical blogs about Monte Carlo Tree Search."
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
print(results)
|
|
122
|
+
```
|
|
123
|
+
|
|
106
124
|
### 📄 Documentation
|
|
107
125
|
|
|
108
126
|
You can find the full NOSIBLE Search Client documentation
|
|
@@ -356,7 +356,7 @@ class Nosible:
|
|
|
356
356
|
search : Search
|
|
357
357
|
Search object to search with.
|
|
358
358
|
expansions : list of str, optional
|
|
359
|
-
|
|
359
|
+
Up to 10 semantically/lexically related queries to boost recall.
|
|
360
360
|
sql_filter : list of str, optional
|
|
361
361
|
SQL‐style filter clauses.
|
|
362
362
|
n_results : int
|
|
@@ -1732,7 +1732,7 @@ class Nosible:
|
|
|
1732
1732
|
prefix = (self.nosible_api_key or "").split("|", 1)[0]
|
|
1733
1733
|
|
|
1734
1734
|
# Map prefixes -> plan names
|
|
1735
|
-
plans = {"test", "self", "basic", "pro", "pro+", "bus", "bus+", "ent", "chat", "cons", "stup", "busn"}
|
|
1735
|
+
plans = {"test", "self", "basic", "pro", "pro+", "bus", "bus+", "ent", "chat", "cons", "stup", "busn", "prod"}
|
|
1736
1736
|
|
|
1737
1737
|
if prefix not in plans:
|
|
1738
1738
|
raise ValueError(f"Your API key is not valid: {prefix} is not a valid plan prefix.")
|
|
@@ -45,6 +45,11 @@ PLAN_RATE_LIMITS = {
|
|
|
45
45
|
"bulk": [(60, 60), (1_500_000, 24 * 3600 * 30)],
|
|
46
46
|
"fast": [(360, 60), (15_000_000, 24 * 3600 * 30)],
|
|
47
47
|
},
|
|
48
|
+
"prod": {
|
|
49
|
+
"scrape-url": [(60, 60), (1_500_000, 24 * 3600 * 30)],
|
|
50
|
+
"bulk": [(60, 60), (1_500_000, 24 * 3600 * 30)],
|
|
51
|
+
"fast": [(360, 60), (15_000_000, 24 * 3600 * 30)],
|
|
52
|
+
},
|
|
48
53
|
# This plan is used for testing in the package
|
|
49
54
|
"chat": {
|
|
50
55
|
"scrape-url": [(60, 60), (1_500_000, 24 * 3600 * 30)],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nosible
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Python client for the NOSIBLE Search API
|
|
5
5
|
Home-page: https://github.com/NosibleAI/nosible-py
|
|
6
6
|
Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
|
|
@@ -146,6 +146,24 @@ with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
|
146
146
|
print(results)
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
+
### 🤖 Cybernaut 1
|
|
150
|
+
|
|
151
|
+
An AI agent with unrestricted access to everything in NOSIBLE including every shard, algorithm, selector,
|
|
152
|
+
reranker, and signal. It knows what these things are and can tune them on the fly to find better results.
|
|
153
|
+
|
|
154
|
+
```python
|
|
155
|
+
from nosible import Nosible
|
|
156
|
+
|
|
157
|
+
with Nosible(nosible_api_key="YOUR API KEY") as client:
|
|
158
|
+
|
|
159
|
+
results = client.search(
|
|
160
|
+
# search() gives you access to Cybernaut 1
|
|
161
|
+
question="Find me interesting technical blogs about Monte Carlo Tree Search."
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
print(results)
|
|
165
|
+
```
|
|
166
|
+
|
|
149
167
|
### 📄 Documentation
|
|
150
168
|
|
|
151
169
|
You can find the full NOSIBLE Search Client documentation
|
|
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
|