@deepseek-ai/dsh-web 0.1.0-rc.6 → 0.1.0-rc.8
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.
- package/lib/types/types.d.ts +4 -3
- package/package.json +5 -5
package/lib/types/types.d.ts
CHANGED
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { HarnessError } from '@deepseek-ai/dsh-llm';
|
|
8
8
|
/**
|
|
9
|
-
* What one search-capable backend
|
|
10
|
-
*
|
|
11
|
-
* and enforced on the way
|
|
9
|
+
* What one search-capable backend is asked to search. Each request carries one
|
|
10
|
+
* query; a consumer may issue several requests. `maxResults` is a
|
|
11
|
+
* `dsh-tool-web`-layer bound passed through unchanged and enforced on the way
|
|
12
|
+
* back by the seam (see {@link WebSearchResult}).
|
|
12
13
|
*/
|
|
13
14
|
export interface WebSearchRequest {
|
|
14
15
|
readonly query: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-web",
|
|
3
3
|
"description": "Abstract web access capability seam (ctx.web) for the DeepSeek Harness — search/fetch provider registry, registration-order-independent selection, request/result vocabulary, and the WebError taxonomy",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.8",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
],
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.
|
|
36
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.
|
|
35
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
|
|
36
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.8",
|
|
37
37
|
"@deepseek-ai/cordis": "^4.0.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@deepseek-ai/schemastery": "^3.18.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.
|
|
44
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.
|
|
43
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
|
|
44
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.8",
|
|
45
45
|
"@deepseek-ai/cordis": "^4.0.1"
|
|
46
46
|
}
|
|
47
47
|
}
|